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