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