contents   index   previous   next



Clib.max()

syntax:

Clib.max(x[, ...])

where:

x - number or list of numbers to work with.

 

return:

number - maximum number passed.

 

description:

This method is similar to the standard C macro, max(), with the differences that only one variable must be supplied and any number of other variables may be supplied for the comparison.

 

see:

Clib.min()

 

 


Clib.min()