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