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