Search Results for

    Show / Hide Table of Contents

    Class SeekableIterator<TKey, TValue>

    Inheritance
    object
    SeekableIterator<TKey, TValue>
    Implements
    ISeekableIterator<TKey, TValue>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Tenray.ZoneTree.Collections
    Assembly: ZoneTree.dll
    Syntax
    public sealed class SeekableIterator<TKey, TValue> : ISeekableIterator<TKey, TValue>
    Type Parameters
    Name Description
    TKey
    TValue

    Constructors

    | Improve this Doc View Source

    SeekableIterator(IIndexedReader<TKey, TValue>)

    Declaration
    public SeekableIterator(IIndexedReader<TKey, TValue> indexedReader)
    Parameters
    Type Name Description
    IIndexedReader<TKey, TValue> indexedReader

    Properties

    | Improve this Doc View Source

    CurrentKey

    Declaration
    public TKey CurrentKey { get; }
    Property Value
    Type Description
    TKey
    | Improve this Doc View Source

    CurrentValue

    Declaration
    public TValue CurrentValue { get; }
    Property Value
    Type Description
    TValue
    | Improve this Doc View Source

    HasCurrent

    Declaration
    public bool HasCurrent { get; }
    Property Value
    Type Description
    bool
    | Improve this Doc View Source

    IsBeginningOfAPart

    Declaration
    public bool IsBeginningOfAPart { get; }
    Property Value
    Type Description
    bool
    | Improve this Doc View Source

    IsEndOfAPart

    Declaration
    public bool IsEndOfAPart { get; }
    Property Value
    Type Description
    bool
    | Improve this Doc View Source

    IsFullyFrozen

    All Indexed Readers are always fully frozen.

    Declaration
    public bool IsFullyFrozen { get; }
    Property Value
    Type Description
    bool

    Methods

    | Improve this Doc View Source

    GetPartIndex()

    Declaration
    public int GetPartIndex()
    Returns
    Type Description
    int
    | Improve this Doc View Source

    Next()

    Declaration
    public bool Next()
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Prev()

    Declaration
    public bool Prev()
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    SeekBegin()

    Declaration
    public bool SeekBegin()
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    SeekEnd()

    Declaration
    public bool SeekEnd()
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    SeekToFirstGreaterOrEqualElement(in TKey)

    Declaration
    public bool SeekToFirstGreaterOrEqualElement(in TKey key)
    Parameters
    Type Name Description
    TKey key
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    SeekToLastSmallerOrEqualElement(in TKey)

    Declaration
    public bool SeekToLastSmallerOrEqualElement(in TKey key)
    Parameters
    Type Name Description
    TKey key
    Returns
    Type Description
    bool
    | Improve this Doc View Source

    Skip(long)

    Declaration
    public void Skip(long offset)
    Parameters
    Type Name Description
    long offset

    Implements

    ISeekableIterator<TKey, TValue>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2022 Tenray.io