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