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