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