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