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