Next: iklib vectors predicates, Up: iklib vectors [Index]
Return a newly allocated vector whose items form the concatenation of the given vectors.
Return a new vector of length new-length whose first slots are
filled with the items from vec and whose last slots, if any left,
are filled with fill. When not used: fill defaults to
#f
.
(vector-resize '#() 0) ⇒ #() (vector-resize '#() 3) ⇒ #(#f #f #f) (vector-resize '#(1 2 3) 5) ⇒ #(1 2 3 #f #f) (vector-resize '#(1 2 3) 2) ⇒ #(1 2)