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