Interface IBytesRefIterator
A simple iterator interface for Bytes
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.dll
Syntax
public interface IBytesRefIterator
Properties
| Improve this Doc View SourceComparer
Return the Bytesnull
if there are no items or the iterator is not
sorted. Callers may invoke this method many times, so it's best to cache a
single instance & reuse it.
Declaration
IComparer<BytesRef> Comparer { get; }
Property Value
Type | Description |
---|---|
IComparer<Bytes |
Methods
| Improve this Doc View SourceNext()
Increments the iteration to the next Bytesnull
if the end of
the iterator is reached. The returned Bytesnull
, do not call it again: the results
are undefined.
Declaration
BytesRef Next()