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