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