Show / Hide Table of Contents

    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 Source

    BitsPerValue

    Returns number of bits per value.

    Declaration
    int BitsPerValue { get; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    Count

    Returns number of values.

    NOTE: This was size() in Lucene.

    Declaration
    int Count { get; }
    Property Value
    Type Description
    System.Int32
    | Improve this Doc View Source

    Ord

    Returns the current position.

    Declaration
    int Ord { get; }
    Property Value
    Type Description
    System.Int32

    Methods

    | Improve this Doc View Source

    Next()

    Returns next value.

    Declaration
    long Next()
    Returns
    Type Description
    System.Int64
    | Improve this Doc View Source

    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
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)