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