Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 608 Bytes

integerMax.adoc

File metadata and controls

48 lines (28 loc) · 608 Bytes

max, min

Returns the greater or lesser of x or y.

gentype max(gentype x,
            gentype y)

gentype max(gentype x,
            sgentype y)

gentype min(gentype x,
            gentype y)

gentype min(gentype x,
            sgentype y)

Description

max returns the greater of x or y.

min returns the lesser of x or y.