boolean |
LongHashSet.addAll(LongHashSet coll) |
Alias for addAll(Collection) for the specialized case when adding another LongHashSet,
avoids boxing and allocations.
|
boolean |
LongHashSet.containsAll(LongHashSet coll) |
LongHashSet specialised variant of {this#containsAll(Collection)}.
|
void |
LongHashSet.copy(LongHashSet that) |
|
LongHashSet |
LongHashSet.difference(LongHashSet other) |
Fast Path set difference for comparison with another LongHashSet.
|
boolean |
LongHashSet.removeAll(LongHashSet coll) |
Alias for removeAll(Collection) for the specialized case when removing another LongHashSet,
avoids boxing and allocations.
|
boolean |
LongHashSet.retainAll(LongHashSet coll) |
Alias for retainAll(Collection) for the specialized case when retaining on another LongHashSet,
avoids boxing and allocations.
|