Basic constructor macro for vl-paramargs-plain structures.
(make-vl-paramargs-plain [:args <args>])
This is the usual way to construct vl-paramargs-plain structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-paramargs-plain structure from scratch. See also change-vl-paramargs-plain, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-vl-paramargs-plain (&rest args) (std::make-aggregate 'vl-paramargs-plain args '((:args)) 'make-vl-paramargs-plain nil))
Function:
(defun vl-paramargs-plain (args) (declare (xargs :guard (vl-paramvaluelist-p args))) (declare (xargs :guard t)) (let ((__function__ 'vl-paramargs-plain)) (declare (ignorable __function__)) (b* ((args (mbe :logic (vl-paramvaluelist-fix args) :exec args))) (cons :vl-paramargs-plain (list args)))))