Returns an array slice starting at the specified index.
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 zero-based index of the first element in the new array slice. - stride
- Type: SystemInt32
The stride between elements.
Return Value
Type:
NativeArraySliceTAn array slice whose first element is at position
index.
Reference