up previous next
Min

a minimum element of a sequence or list
Syntax

Min(E_1:OBJECT,...,E_n:OBJECT):OBJECT

Min(L:LIST):OBJECT


Description
In the first form, this function returns a minimum of E_1,...,E_n. In the second form, it returns a minimum of the objects in the list L.

Example
  Min([1,2,3]);
1
-------------------------------
  Min(1,2,3);
1
-------------------------------


See Also