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