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