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 NativeArraySlice<T> From(
int index,
int stride
)
Public Function From (
index As Integer,
stride As Integer
) As NativeArraySlice(Of T)
public:
NativeArraySlice<T> From(
int index,
int stride
)
member From :
index : int *
stride : int -> NativeArraySlice<'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:
NativeArraySliceTAn array slice that starts at position
index
in the current array with stride
stride.
Reference