| Package | Description |
|---|---|
| it.uniroma3.mat.extendedset.wrappers |
| Modifier and Type | Method and Description |
|---|---|
LongSet |
LongSet.clone()
See the
clone() of Object |
LongSet |
LongSet.complemented()
Generates the complement set.
|
LongSet |
LongSet.convert(Collection<Long> a)
Converts a given array into an instance of the current class.
|
LongSet |
LongSet.convert(long... a)
Converts a given array into an instance of the current class.
|
LongSet |
LongSet.difference(LongSet other)
Generates the difference set
|
LongSet |
LongSet.empty()
Generates an empty set
|
LongSet |
LongSet.intersection(LongSet other)
Generates the intersection set
|
LongSet |
LongSet.symmetricDifference(LongSet other)
Generates the symmetric difference set
|
LongSet |
LongSet.union(LongSet other)
Generates the union set
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
LongSet.addAll(LongSet other)
Adds all of the elements in the specified collection to this set if
they're not already present.
|
int |
LongSet.compareTo(LongSet o) |
boolean |
LongSet.containsAll(LongSet other)
Returns true if this set contains all of the elements of the
specified collection.
|
boolean |
LongSet.containsAny(LongSet other)
|
boolean |
LongSet.containsAtLeast(LongSet other,
long minElements)
|
LongSet |
LongSet.difference(LongSet other)
Generates the difference set
|
long |
LongSet.differenceSize(LongSet other)
Computes the difference set size.
|
LongSet |
LongSet.intersection(LongSet other)
Generates the intersection set
|
long |
LongSet.intersectionSize(LongSet other)
Computes the intersection set size.
|
boolean |
LongSet.removeAll(LongSet other)
Removes from this set all of its elements that are contained in the
specified collection.
|
boolean |
LongSet.retainAll(LongSet other)
Retains only the elements in this set that are contained in the specified
collection.
|
LongSet |
LongSet.symmetricDifference(LongSet other)
Generates the symmetric difference set
|
long |
LongSet.symmetricDifferenceSize(LongSet other)
Computes the symmetric difference set size.
|
LongSet |
LongSet.union(LongSet other)
Generates the union set
|
long |
LongSet.unionSize(LongSet other)
Computes the union set size.
|
Copyright © 2016. All rights reserved.