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