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