query
On this page

min

lib.trivial.min

Docs pulled from | This Revision | about 1 hour ago


Return minimum of two numbers.

Inputs

x

1. Function argument

y

2. Function argument


Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

min = x: y: if x < y then x else y;