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