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