Jamie Balfour

Welcome to my personal website.

Find out more about me, my personal projects, reviews, courses and much more here.

Official ZPE/YASS documentationlist_auto_populate

Official ZPE/YASS documentationlist_auto_populate

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
Feedback 👍
Comments are sent via email to me.