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