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 TypeMethodDescriptionbooleanIntHashSet.addAll(IntHashSet coll) Alias forIntHashSet.addAll(Collection)for the specialized case when adding another IntHashSet, avoids boxing and allocations.booleanIntHashSet.containsAll(IntHashSet coll) IntHashSet specialised variant of {this#containsAll(Collection)}.voidIntHashSet.copy(IntHashSet that) Copy values from anotherIntHashSetinto this one.IntHashSet.difference(IntHashSet other) Fast Path set difference for comparison with another IntHashSet.booleanIntHashSet.removeAll(IntHashSet coll) Alias forIntHashSet.removeAll(Collection)for the specialized case when removing another IntHashSet, avoids boxing and allocations.booleanIntHashSet.retainAll(IntHashSet coll) Alias forIntHashSet.retainAll(Collection)for the specialized case when retaining on another IntHashSet, avoids boxing and allocations.