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