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