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