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