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