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