Uses of Class
org.agrona.collections.ObjectHashSet
-
Packages that use ObjectHashSet Package Description org.agrona.collections 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 ObjectHashSet Modifier and Type Method Description ObjectHashSet<T>
ObjectHashSet. difference(ObjectHashSet<T> other)
Fast Path set difference for comparison with another ObjectHashSet.Methods in org.agrona.collections with parameters of type ObjectHashSet Modifier and Type Method Description boolean
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<T>
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.
-