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 TypeMethodDescriptionbooleanObjectHashSet.addAll(ObjectHashSet<T> coll) Alias forObjectHashSet.addAll(Collection)for the specialized case when adding another ObjectHashSet, avoids boxing and allocations.voidObjectHashSet.copy(ObjectHashSet<T> that) Copy data from the providedObjectHashSetinto this one.ObjectHashSet.difference(ObjectHashSet<T> other) Fast Path set difference for comparison with another ObjectHashSet.booleanObjectHashSet.removeAll(ObjectHashSet<T> coll) Alias forObjectHashSet.removeAll(Collection)for the specialized case when removing another ObjectHashSet, avoids boxing and allocations.