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