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