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