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