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