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