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