Interface PackedInt32s.IReaderIterator
Run-once iterator interface, to decode previously saved PackedInt32s.
Namespace: Lucene.Net.Util.Packed
Assembly: Lucene.Net.dll
Syntax
public interface PackedInt32s.IReaderIterator
Properties
BitsPerValue
Returns number of bits per value.
Declaration
int BitsPerValue { get; }
Property Value
| Type | Description |
|---|---|
| int |
Count
Returns number of values.
NOTE: This was size() in Lucene.Declaration
int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
Ord
Returns the current position.
Declaration
int Ord { get; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
Next()
Returns next value.
Declaration
long Next()
Returns
| Type | Description |
|---|---|
| long |
Next(int)
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 |
|---|---|---|
| int | count |
Returns
| Type | Description |
|---|---|
| Int64sRef |