cfunction
src/core/array.c on line 137, column 1
(array/new-filled count &opt value)
Creates a new array of `count` elements, all set to `value`, which
defaults to nil. Returns the new array.
(array/new-filled 3) # => @[nil nil nil]
(array/new-filled 3 :a) # => @[:a :a :a]