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