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