chickadee » srfi-1 » list-tabulate

list-tabulate n init-procprocedure

Returns an N-element list. Element I of the list, where 0 <= I < N, is produced by (INIT-PROC I). No guarantee is made about the dynamic order in which INIT-PROC is applied to these indices.

(list-tabulate 4 values) => (0 1 2 3)