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
)
Public Function From (
index As Integer
) As NativeArraySlice(Of T)
public:
NativeArraySlice<T> From(
int index
)
member From :
index : int -> NativeArraySlice<'T>
Parameters
- index
- Type: SystemInt32
The zero-based index of the first element in the new array slice.
Return Value
Type:
NativeArraySliceTAn array slice whose first element is at position
index.
Reference