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