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