Modifying constructor for vl-genloop structures.
(change-vl-genloop x [:var <var>] [:initval <initval>] [:continue <continue>] [:nextval <nextval>] [:body <body>] [:loc <loc>])
This is an often useful alternative to make-vl-genloop.
We construct a new vl-genloop structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-genloop (x &rest args) (std::change-aggregate 'vl-genloop x args '((:var . vl-genloop->var) (:initval . vl-genloop->initval) (:continue . vl-genloop->continue) (:nextval . vl-genloop->nextval) (:body . vl-genloop->body) (:loc . vl-genloop->loc)) 'change-vl-genloop 'remake-vl-genloop))