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