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