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