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