Search Results for

    Show / Hide Table of Contents

    Interface ISparseEnumerator<T>

    Contract for sparse enumeration

    Inherited Members
    IEnumerator<T>.Current
    IEnumerator.MoveNext()
    IEnumerator.Reset()
    IDisposable.Dispose()
    Namespace: Microsoft.ML.Probabilistic.Collections
    Assembly: Microsoft.ML.Probabilistic.dll
    Syntax
    public interface ISparseEnumerator<T> : IEnumerator<T>, IEnumerator, IDisposable
    Type Parameters
    Name Description
    T

    Properties

    CommonValue

    The common value for the sparse enumeration

    Declaration
    T CommonValue { get; }
    Property Value
    Type Description
    T

    CommonValueCount

    Current common value count

    Declaration
    int CommonValueCount { get; }
    Property Value
    Type Description
    Int32

    CurrentIndex

    Current index. If past end of list, current index shows count

    Declaration
    int CurrentIndex { get; }
    Property Value
    Type Description
    Int32
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.