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