Constructor macro for vl-extinttoken-p structures.
Syntax:
(make-vl-extinttoken [:etext <etext>] [:value <value>])
This is our preferred way to construct vl-extinttoken-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-extinttoken-p structure from scratch. See also change-vl-extinttoken, which can "change" an existing structure, instead.
The vl-extinttoken-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-extinttoken instead.
This is an ordinary
Macro:
(defmacro make-vl-extinttoken (&rest args) (std::make-aggregate 'vl-extinttoken args '((:etext) (:value)) 'make-vl-extinttoken nil))