chickadee » srfi-133 » make-vector

make-vector size #!optional fillprocedure

[R7RS-small] Creates and returns a vector of size size. If fill is specified, all the elements of the vector are initialized to fill. Otherwise, their contents are indeterminate.

Example:

(make-vector 5 3)
 ;=> #(3 3 3 3 3)