Index<T>.Item Property

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Item[IList<Int32>] Gets the specified subset of the index.
Item[Int32] Gets the element at the specified position in the index.
Item[Int32, Int32] Gets the value of the index at the specified position and level.

Index<T>.Item(IList<Int32>)

Gets the specified subset of the index.
C#
public abstract Index<T> this[
	IList<int> indexes
] { get; }

Parameters

indexes  IList<Int32>
A collection of integer indexes.

Return Value

Index<T>
A new index that contains the elements of this index at the positions specified by indexes.

Index<T>.Item(Int32)

Gets the element at the specified position in the index.
C#
public T this[
	int index
] { get; }

Parameters

index  Int32
The zero-based index of the element.

Return Value

T
The element at position index in the index.

Index<T>.Item(Int32, Int32)

Gets the value of the index at the specified position and level.
C#
public virtual Object this[
	int index,
	int level
] { get; }

Parameters

index  Int32
The zero-based index of the entry.
level  Int32
The zero-based level of the entry.

Return Value

Object

See Also