query
On this page

max

lib.trivial.max

Docs pulled from | This Revision | 11 minutes ago


Return maximum 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.

max = x: y: if x > y then x else y;