Raw constructor for vl-parsed-port-identifier-p structures.
Syntax:
(vl-parsed-port-identifier name udims)
This is the lowest-level constructor for vl-parsed-port-identifier-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-vl-parsed-port-identifier or change-vl-parsed-port-identifier 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-port-identifier-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-parsed-port-identifier instead.
This is an ordinary constructor function introduced by defaggregate.
Function:
(defun vl-parsed-port-identifier (name udims) (declare (xargs :guard (and (vl-idtoken-p name) (vl-dimensionlist-p udims)))) (cons name udims))