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