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