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