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