make-vector -- r7rs Definition constructor;
make-vector (from vonuvoli);Procedure variants:
((range-length-zero) -> (vector-empty))
range-length-zero;vector-empty;((range-length-zero any) -> (vector-empty))
range-length-zero;any;vector-empty;((range-length-not-zero) -> (vector-not-empty))
range-length-not-zero;vector-not-empty;((range-length-not-zero any) -> (vector-not-empty))
range-length-not-zero;any;vector-not-empty;scheme:base -- (scheme base);scheme -- (scheme);(make-vector k) (make-vector k fill)Returns a newly allocated vector of
kelements. If a second argument is given, then each element is initialized tofill. Otherwise the initial contents of each element is unspecified.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.