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