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