T - the type of this objectpublic interface Nor<T extends Nor<T>> extends Not, Or<T>
| Modifier and Type | Method and Description |
|---|---|
default Nor<T> |
nor(T other)
Unions this object with another object to produce the complement of a combined result.
|
Nor<T> |
not()
Gets the complement of this object.
|
Nor<T> |
or(T other)
Unions this object with another object to produce a combined result.
|
default Nor<T> nor(T other)
~(A | B) or a logical NOR.other - the unioned objectother objectNor<T> not()
Not~A or a logical NOT.