AbstractIterator
abstract class AbstractIterator(size: Int, docs: PagedMutable, delGen: Long) : DocValuesFieldUpdates.Iterator
Functions
Link copied to clipboard
Link copied to clipboard
Advance the iterator to exactly target and return whether target has a value. target must be greater than or equal to the current .docID and must be a valid doc ID, ie. 0 and <maxDoc. After this method returns, .docID returns target.
Link copied to clipboard
Returns a binary value for the current document if this iterator is a binary value iterator.
Link copied to clipboard
Returns the estimated cost of this DocIdSetIterator.
Link copied to clipboard
Load doc IDs into a FixedBitSet. This should behave exactly as if implemented as below, which is the default implementation:
Link copied to clipboard