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