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