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