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