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