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