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