minList()

Synopsis

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.

Syntax

minList ( list As List ) As Number 
Argument Type Description
list List A list containing only Integers and Numbers .

Example 1

Intent >minList({3, 4.1, 1.2, 11.9, 7}) 
--> 1.2 

Example 2

Intent >minList({-5, -3, -7.1}) 
--> -7.1 

Example 3

Intent >minList({}) 
--> Infinity