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