% Function VECTOR
Function VECTOR
vector &rest objects => vector
object - オブジェクト
vector - 型(vector t *)のvector
objectsの数に対応したサイズの
新しい一般的なsimple-vectorを生成します。
vectorはobjectsの内容で初期化されます。
(arrayp (setq v (vector 1 2 'sirens))) => true
(vectorp v) => true
(simple-vector-p v) => true
(length v) => 3
なし。
なし。
なし。
(vector a1 a2 ... an)
== (make-array (list n) :element-type t
:initial-contents
(list a1 a2 ... an))