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