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