Package | Description |
---|---|
myUtil |
Modifier and Type | Method and Description |
---|---|
Set<T> |
Set.diff(Set<T> S)
Difference.
|
Set<T> |
Set.intersect(Set<T> S)
Intersection.
|
Set<T> |
Set.union(Set<T> S)
Union.
|
Modifier and Type | Method and Description |
---|---|
void |
Set.add(Set<T> S)
Add every element in Set S into this Set.
|
boolean |
Set.contains(Set<T> S)
Subset.
|
Set<T> |
Set.diff(Set<T> S)
Difference.
|
Set<T> |
Set.intersect(Set<T> S)
Intersection.
|
void |
Set.remove(Set<T> S)
Remove every element in Set S from this Set.
|
Set<T> |
Set.union(Set<T> S)
Union.
|