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