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