ベクタ(一次元配列) VECTOR のフィルポインタの位置の要素を取り除き、 その要素を返します。 VECTOR はフィルポインタを持っているベクタである必要があります。 使用例: ;; フィルポインタなし (setf x (make-array 5 :initial-contents '(a b c d e))) => #(a b c d e) (vector-pop x) => エラー ;; フィルポインタあり (setf x (make-array 5 :initial-contents '(a b c d e) :fill-pointer t)) => #(a b c d e) (vector-pop x) => e x => #(a b c d)