T - the type of this objectpublic interface Sub<T extends Sub<T>> extends And<T>, Not
| Modifier and Type | Method and Description |
|---|---|
Sub<T> |
and(T other)
Intersects this object with another object to produce a combined result.
|
Sub<T> |
not()
Gets the complement of this object.
|
default Sub<T> |
sub(T other)
Subtracts the other object from this object to produce a combined result.
|
default Sub<T> sub(T other)
A - B or the relative complement.other - the subtrahend objectother object being
subtracted from this objectSub<T> and(T other)
AndA & B or a logical AND.