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