Index<T>.Item Property
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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. |
Item(IList<Int32>)
Gets the specified subset of the index.
public abstract Index<T> this[
IList<int> indexes
] { get; }
Parameters
Return Value
Index<T>A new index that contains the elements of this index at the positions specified by indexes.
Item(Int32)
Gets the element at the specified position in the index.
public T this[
int index
] { get; }
Parameters
- index Int32
- The zero-based index of the element.
Return Value
TThe element at position index in the index.
Item(Int32, Int32)
Gets the value of the index at the specified position
and level.