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 TypeMethodDescriptionboolean
LongHashSet.addAll
(LongHashSet coll) Alias foraddAll(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) Copy values from anotherLongHashSet
longo this one.LongHashSet.difference
(LongHashSet other) Fast Path set difference for comparison with another LongHashSet.boolean
LongHashSet.removeAll
(LongHashSet coll) Alias forremoveAll(Collection)
for the specialized case when removing another LongHashSet, avoids boxing and allocations.boolean
LongHashSet.retainAll
(LongHashSet coll) Alias forretainAll(Collection)
for the specialized case when retaining on another LongHashSet, avoids boxing and allocations.