Returns an array 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 NativeArray1D<T> From(
int index
)
Public Function From (
index As Integer
) As NativeArray1D(Of T)
public:
NativeArray1D<T> From(
int index
)
member From :
index : int -> NativeArray1D<'T>
Parameters
- index
- Type: SystemInt32
The index of the first element of the new array.
Return Value
Type:
NativeArray1DTAn array that starts at position
index
in the current array.
Reference