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