HelloWorld - 0.1.0

Stdlib.Data.Int.Ord

Definitions

builtin int-eq == : Int -> Int -> BoolSource#

Tests for equality.

/= : Int -> Int -> BoolSource#

Tests for inequality.

builtin int-le <= : Int -> Int -> BoolSource#

Returns true iff the first element is less than or equal to the second.

builtin int-lt < : Int -> Int -> BoolSource#

Returns true iff the first element is less than the second.

> : Int -> Int -> BoolSource#

Returns true iff the first element is greater than the second.

>= : Int -> Int -> BoolSource#

Returns true iff the first element is greater than or equal to the second.

min : IntIntIntSource#

Returns the smallest Int.

max : IntIntIntSource#

Returns the biggest Int.