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