Uses of Class
org.agrona.collections.ObjectHashSet
Packages that use ObjectHashSet
Package
Description
Collections classes that support primitive types and tend to be cache friendly.
-
Uses of ObjectHashSet in org.agrona.collections
Methods in org.agrona.collections that return ObjectHashSetModifier and TypeMethodDescriptionObjectHashSet.difference
(ObjectHashSet<T> other) Fast Path set difference for comparison with another ObjectHashSet.Methods in org.agrona.collections with parameters of type ObjectHashSetModifier and TypeMethodDescriptionboolean
ObjectHashSet.addAll
(ObjectHashSet<T> coll) Alias foraddAll(Collection)
for the specialized case when adding another ObjectHashSet, avoids boxing and allocations.void
ObjectHashSet.copy
(ObjectHashSet<T> that) Copy data from the providedObjectHashSet
into this one.ObjectHashSet.difference
(ObjectHashSet<T> other) Fast Path set difference for comparison with another ObjectHashSet.boolean
ObjectHashSet.removeAll
(ObjectHashSet<T> coll) Alias forremoveAll(Collection)
for the specialized case when removing another ObjectHashSet, avoids boxing and allocations.