list_auto_populate (integer count, function process[, list l]) ⇒ list
Returns a list with count autofilled items and generated by a function, process. A list, l, can be specified to append to.
First available: Version 1.7.6
Examples
YASS
$l = list_auto_populate(100, function()return random_number(0, 100)end function)print($l)
Comments