Interface PackedInt32s.IReaderIterator
Run-once iterator interface, to decode previously saved PackedInt32s.
Namespace: Lucene.Net.Util.Packed
Assembly: Lucene.Net.dll
Syntax
public interface IReaderIterator
Properties
| Improve this Doc View SourceBitsPerValue
Returns number of bits per value.
Declaration
int BitsPerValue { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Count
Returns number of values.
NOTE: This was size() in Lucene.
Declaration
int Count { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Ord
Returns the current position.
Declaration
int Ord { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Methods
| Improve this Doc View SourceNext()
Returns next value.
Declaration
long Next()
Returns
| Type | Description |
|---|---|
| System.Int64 |
Next(Int32)
Returns at least 1 and at most count next values,
the returned ref MUST NOT be modified.
Declaration
Int64sRef Next(int count)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | count |
Returns
| Type | Description |
|---|---|
| Int64sRef |