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