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