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