Uses of Class
org.apache.lucene.internal.hppc.LongHashSet
Packages that use LongHashSet
Package
Description
Code to maintain and access indices.
Internal copy of a subset of classes from the HPPC library.
-
Uses of LongHashSet in org.apache.lucene.index
Fields in org.apache.lucene.index declared as LongHashSetModifier and TypeFieldDescriptionprivate final LongHashSet
BufferedUpdatesStream.FinishedSegments.finishedDelGens
This lets us track the "holes" in the current frontier of applying del gens; once the holes are filled in we can advance completedDelGen. -
Uses of LongHashSet in org.apache.lucene.internal.hppc
Methods in org.apache.lucene.internal.hppc that return LongHashSetModifier and TypeMethodDescriptionLongHashSet.clone()
static LongHashSet
LongHashSet.from
(long... elements) Create a set from a variable number of arguments or an array oflong
.Methods in org.apache.lucene.internal.hppc with parameters of type LongHashSetModifier and TypeMethodDescriptionint
LongHashSet.addAll
(LongHashSet set) Adds all elements from the given set to this set.int
LongHashSet.removeAll
(LongHashSet other) Removes all keys present in a given container.private boolean
LongHashSet.sameKeys
(LongHashSet other) Return true if all keys of some other container exist in this container.Constructors in org.apache.lucene.internal.hppc with parameters of type LongHashSetModifierConstructorDescriptionLongHashSet
(LongHashSet set) New instance copying elements from another set.