Uses of Class
org.agrona.collections.IntHashSet
Packages that use IntHashSet
Package
Description
Collections classes that support primitive types and tend to be cache friendly.
-
Uses of IntHashSet in org.agrona.collections
Methods in org.agrona.collections that return IntHashSetModifier and TypeMethodDescriptionIntHashSet.difference
(IntHashSet other) Fast Path set difference for comparison with another IntHashSet.Methods in org.agrona.collections with parameters of type IntHashSetModifier and TypeMethodDescriptionboolean
IntHashSet.addAll
(IntHashSet coll) Alias foraddAll(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 anotherIntHashSet
into this one.IntHashSet.difference
(IntHashSet other) Fast Path set difference for comparison with another IntHashSet.boolean
IntHashSet.removeAll
(IntHashSet coll) Alias forremoveAll(Collection)
for the specialized case when removing another IntHashSet, avoids boxing and allocations.boolean
IntHashSet.retainAll
(IntHashSet coll) Alias forretainAll(Collection)
for the specialized case when retaining on another IntHashSet, avoids boxing and allocations.