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