Returns the minimum value in list , which must contain only Integers or Numbers . The value returned is always a Number , not an Integer . This function is effectively obsolete. Use Apply(:min, myList) instead.
minList ( list As List ) As Number
Argument | Type | Description |
---|---|---|
list | List | A list containing only Integers and Numbers . |
Intent >minList({3, 4.1, 1.2, 11.9, 7}) --> 1.2
Intent >minList({-5, -3, -7.1}) --> -7.1
Intent >minList({}) --> Infinity