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