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