up previous next
a minimum element of a sequence or list
Min(E_1: OBJECT,...,E_n: OBJECT): OBJECT
Min(L: LIST): OBJECT |
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.
/**/ Min([1,2,3]);
1
/**/ Min(1,2,3);
1
|