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