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