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