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