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