IIndex.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[IEnumerable<Int32>] | Gets a subset of the index. |
Item[IList<Boolean>] | Gets a subset of the index defined by a boolean mask. |
Item[Int32] | Gets the element at the specified position. |
Item(IEnumerable<Int32>)
Gets a subset of the index.
IIndex this[
IEnumerable<int> indexes
] { get; }
Parameters
- indexes IEnumerable<Int32>
- A sequence of integer indexes.
Return Value
IIndexAn IIndex that contains the elements of this index at the positions listed in indexes.
Item(IList<Boolean>)
Gets a subset of the index defined by a boolean mask.
IIndex this[
IList<bool> mask
] { get; }
Parameters
Return Value
IIndexAn index with values of this index for which the corresponding element in mask is true.
Item(Int32)
Gets the element at the specified position.
Object this[
int index
] { get; }
Parameters
- index Int32
- The zero-based index of the element.