IntervalIndex<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.

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

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

Parameters

indexes  IList<Int32>
A collection of integer indexes.

Return Value

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

See Also