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