A copying macro that lets you create new vl-extinttoken-p structures, based on existing structures.
Syntax:
(change-vl-extinttoken x [:etext <etext>] [:breakp <breakp>] [:value <value>])
This is a sometimes useful alternative to make-vl-extinttoken.
It constructs a new vl-extinttoken-p structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-extinttoken (x &rest args) (std::change-aggregate 'vl-extinttoken x args '((:etext . vl-extinttoken->etext) (:breakp . vl-extinttoken->breakp) (:value . vl-extinttoken->value)) 'change-vl-extinttoken 'remake-vl-extinttoken))