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