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