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