Search Results for

    Show / Hide Table of Contents

    Interface ICursorArray

    Inherited Members
    IEnumerable.GetEnumerator()
    Namespace: Microsoft.ML.Probabilistic.Collections
    Assembly: Microsoft.ML.Probabilistic.dll
    Syntax
    public interface ICursorArray : IEnumerable

    Properties

    Count

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

    Item[Int32]

    Declaration
    object this[int index] { get; }
    Parameters
    Type Name Description
    Int32 index
    Property Value
    Type Description
    Object

    Item[Int32[]]

    Declaration
    object this[params int[] index] { get; }
    Parameters
    Type Name Description
    Int32[] index
    Property Value
    Type Description
    Object

    Lengths

    Declaration
    IList<int> Lengths { get; }
    Property Value
    Type Description
    IList<Int32>

    Rank

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

    Methods

    GetLength(Int32)

    Declaration
    int GetLength(int dimension)
    Parameters
    Type Name Description
    Int32 dimension
    Returns
    Type Description
    Int32

    MoveTo(Int32)

    Declaration
    void MoveTo(int index)
    Parameters
    Type Name Description
    Int32 index

    MoveTo(Int32[])

    Declaration
    void MoveTo(params int[] index)
    Parameters
    Type Name Description
    Int32[] index

    Extension Methods

    EnumerableExtensions.ForEach<T>(IEnumerable, Action<T>)
    EnumerableExtensions.ForEach<T>(IEnumerable, Action<Int32, T>)
    EnumerableExtensions.IndexOf<T>(IEnumerable, T)
    EnumerableExtensions.FindIndex<T>(IEnumerable, Predicate<T>)
    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.