Raw constructor for vl-parsed-ansi-port-p structures.
Syntax:
(vl-parsed-ansi-port dir head id atts)
This is the lowest-level constructor for vl-parsed-ansi-port-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-vl-parsed-ansi-port or change-vl-parsed-ansi-port instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The vl-parsed-ansi-port-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-parsed-ansi-port instead.
This is an ordinary constructor function introduced by defaggregate.
Function:
(defun vl-parsed-ansi-port (dir head id atts) (declare (xargs :guard (and (vl-maybe-direction-p dir) (vl-parsed-ansi-head-p head) (vl-parsed-port-identifier-p id) (vl-atts-p atts)))) (cons :vl-parsed-ansi-port (cons (cons dir head) (cons id atts))))