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