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