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