chickadee » srfi-116 » make-ilist

make-ilist n #!optional fillprocedure

Returns an n-element ilist, whose elements are all the value fill. If the fill argument is not given, the elements of the ilist may be arbitrary values.

(make-ilist 4 'c) ;=> (c c c c)