min
lib.min
Docs pulled from | This Revision | 38 minutes ago
Returns minimum of two numbers.
Inputs
x-
1. Function argument
y-
2. Function argument
Type
min :: Number -> Number -> Number
Noogle detected
Implementation
The following is the current implementation of this function.
min = x: y: if x < y then x else y;