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