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