T - the type of this objectpublic interface Nand<T extends Nand<T>> extends Not, And<T>
| Modifier and Type | Method and Description |
|---|---|
Nand<T> |
and(T other)
Intersects this object with another object to produce a combined result.
|
default Nand<T> |
nand(T other)
Intersects this object with another object to produce the complement of a combined result.
|
Nand<T> |
not()
Gets the complement of this object.
|
default Nand<T> nand(T other)
~(A & B) or a logical NAND.other - the intersected objectother objectNand<T> not()
Not~A or a logical NOT.