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