Modifying constructor for value-array structures.
(change-value-array x [:elements <elements>])
This is an often useful alternative to make-value-array.
We construct a new value-array structure that is a copy of
This is an ordinary
Macro:
(defmacro change-value-array (x &rest args) (std::change-aggregate 'value-array x args '((:elements . value-array->elements)) 'change-value-array 'nil))