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