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