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