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