makeLargeList()

Synopsis

Creates a list i entries long, populated by integer values in descending order from i-1 to 0.

Syntax

makeLargeList ( i As Integer ) As List 
Argument Type Description
i Integer Number of entries in the output list

Example 1

Intent >makeLargeList(4) 
--> {3, 2, 1, 0} 

Example 2

Intent >makeLargeList(0) 
--> {}