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