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