(rontolisp) docs
← Functions

vector-push

(vector-push value vector)

Stores value at the fill pointer of a vector created with make-array :fill-pointer, increments the fill pointer and returns the index the value was stored at, or nil (leaving the vector untouched) when the vector is already full. Use vector-push-extend to grow the vector instead. Signals an error when the vector has no fill pointer.