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