vector
{&rest objects} => vector
object---an object.
vector---a vector of type (vector t *).
Creates a fresh simple general vector whose size corresponds to the number of objects.
The vector is initialized to contain the objects.
(arrayp (setq v (vector 1 2 'sirens))) => true (vectorp v) => true (simple-vector-p v) => true (length v) => 3
section make-array [Function]
vector is analogous to list.
(vector a{{}_1} a{{}_2} ... a{{}_n}) == (make-array (list n) :element-type t :initial-contents (list a{{}_1} a{{}_2} ... a{{}_n}))
Go to the first, previous, next, last section, table of contents.