Basic constructor macro for sinteger-bit-role-value structures.
(make-sinteger-bit-role-value [:exp <exp>])
This is the usual way to construct sinteger-bit-role-value structures. It simply conses together a structure with the specified fields.
This macro generates a new sinteger-bit-role-value structure from scratch. See also change-sinteger-bit-role-value, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-sinteger-bit-role-value (&rest args) (std::make-aggregate 'sinteger-bit-role-value args '((:exp)) 'make-sinteger-bit-role-value nil))
Function:
(defun sinteger-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))))