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