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