Returns a slice of the current sorted index.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Index<T> GetSlice(
T startKey,
T endKey
)
Public Overridable Function GetSlice (
startKey As T,
endKey As T
) As Index(Of T)
public:
virtual Index<T>^ GetSlice(
T startKey,
T endKey
)
abstract GetSlice :
startKey : 'T *
endKey : 'T -> Index<'T>
override GetSlice :
startKey : 'T *
endKey : 'T -> Index<'T>
Parameters
- startKey
- Type: T
The first key to be included
in the new index. - endKey
- Type: T
The zero-based index of the last element
in the new index.
Return Value
Type:
IndexTA new index of the same type.
Reference