Returns an array slice that starts at the specified index in the current array.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ArraySlice<T> From(
int index,
int stride
)
Public Function From (
index As Integer,
stride As Integer
) As ArraySlice(Of T)
public:
ArraySlice<T> From(
int index,
int stride
)
member From :
index : int *
stride : int -> ArraySlice<'T>
Parameters
- index
- Type: SystemInt32
The index of the first element of the new array. - stride
- Type: SystemInt32
The stride of the array slice.
Return Value
Type:
ArraySliceTAn array slice that starts at position
index
in the current array with stride
stride.
Reference