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