Noogλe

From
To
On this page

min

lib.min

Docs pulled from | This Revision | about 10 hours ago


Return minimum of two numbers.

Inputs

x

1. Function argument

y

2. Function argument

(lib.trivial.min)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

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