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