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