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