vector
-- r7rs
Definition constructor
;
Procedure variants:
(() -> (vector-empty))
vector-empty
;((any |1...|) -> (vector-not-empty))
any
;...
-- at least one time;vector-not-empty
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(vector obj ...)
Returns a newly allocated vector whose elements contain the given arguments. It is analogous to
list
.(vector 'a 'b 'c) ===> #(a b c)
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.