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