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