Modifying constructor for vl-namedarg structures.
(change-vl-namedarg x [:name <name>] [:expr <expr>] [:nameonly-p <nameonly-p>] [:atts <atts>])
This is an often useful alternative to make-vl-namedarg.
We construct a new vl-namedarg structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-namedarg (x &rest args) (std::change-aggregate 'vl-namedarg x args '((:name . vl-namedarg->name) (:expr . vl-namedarg->expr) (:nameonly-p . vl-namedarg->nameonly-p) (:atts . vl-namedarg->atts)) 'change-vl-namedarg 'nil))