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