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