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