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