Uses of Class
org.agrona.collections.LongHashSet
Packages that use LongHashSet
Package
Description
Collections classes that support primitive types and tend to be cache friendly.
-
Uses of LongHashSet in org.agrona.collections
Methods in org.agrona.collections that return LongHashSetModifier and TypeMethodDescriptionLongHashSet.difference(LongHashSet other) Fast Path set difference for comparison with another LongHashSet.Methods in org.agrona.collections with parameters of type LongHashSetModifier and TypeMethodDescriptionbooleanLongHashSet.addAll(LongHashSet coll) Alias forLongHashSet.addAll(Collection)for the specialized case when adding another LongHashSet, avoids boxing and allocations.booleanLongHashSet.containsAll(LongHashSet coll) LongHashSet specialised variant of {this#containsAll(Collection)}.voidLongHashSet.copy(LongHashSet that) Copy values from anotherLongHashSetlongo this one.LongHashSet.difference(LongHashSet other) Fast Path set difference for comparison with another LongHashSet.booleanLongHashSet.removeAll(LongHashSet coll) Alias forLongHashSet.removeAll(Collection)for the specialized case when removing another LongHashSet, avoids boxing and allocations.booleanLongHashSet.retainAll(LongHashSet coll) Alias forLongHashSet.retainAll(Collection)for the specialized case when retaining on another LongHashSet, avoids boxing and allocations.