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