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