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