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