T - the type of this objectpublic interface Xnor<T extends Xnor<T>> extends Xor<T>
| Modifier and Type | Method and Description |
|---|---|
Xnor<T> |
and(T other)
Intersects this object with another object to produce a combined result.
|
Xnor<T> |
not()
Gets the complement of this object.
|
Xnor<T> |
or(T other)
Unions this object with another object to produce a combined result.
|
default Xnor<T> |
sub(T other)
Subtracts the other object from this object to produce a combined result.
|
default Xnor<T> |
xnor(T other)
Disjunctively unions this object with another object to produce the complement of a combined result.
|
default Xnor<T> |
xor(T other)
Disjunctively unions this object with another object to produce a combined result.
|
default Xnor<T> xnor(T other)
~(A ^ B) or a logical XNOR.other - the disjunctively unioned objectother objectdefault Xnor<T> xor(T other)
XorA ^ B or a logical XOR.Xnor<T> not()
Not~A or a logical NOT.Xnor<T> and(T other)
AndA & B or a logical AND.and in interface And<T extends Xnor<T>>and in interface Sub<T extends Xnor<T>>and in interface Xor<T extends Xnor<T>>other - the intersected objectother objectXnor<T> or(T other)
OrA | B or a logical OR.