static <E> SetUtils.SetView<E> |
SetUtils.difference(Set<? extends E> a,
Set<? extends E> b) |
Returns a unmodifiable view containing the difference of the given
Set s, denoted by a \ b (or a - b ).
|
static <E> SetUtils.SetView<E> |
SetUtils.disjunction(Set<? extends E> a,
Set<? extends E> b) |
Returns a unmodifiable view of the symmetric difference of the given
Set s.
|
static <E> SetUtils.SetView<E> |
SetUtils.intersection(Set<? extends E> a,
Set<? extends E> b) |
Returns a unmodifiable view of the intersection of the given Set s.
|
static <E> SetUtils.SetView<E> |
SetUtils.union(Set<? extends E> a,
Set<? extends E> b) |
Returns a unmodifiable view of the union of the given Set s.
|