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