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