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