This is an old version, view current version.

2.3 Bound Functions

int min(int x, int y)
Return the minimum of x and y. min(x,y)={xif x<yyotherwise

int max(int x, int y)
Return the maximum of x and y. max(x,y)={xif x>yyotherwise