Returns an array slice that skips the specified number of elements of the array slice.
Namespace:
Extreme.Collections
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public NativeArraySlice<T> Increment(
int count
)
Public Function Increment (
count As Integer
) As NativeArraySlice(Of T)
public:
NativeArraySlice<T> Increment(
int count
)
member Increment :
count : int -> NativeArraySlice<'T>
Parameters
- count
- Type: SystemInt32
The index of the first element of the new array slice.
Return Value
Type:
NativeArraySliceTAn array slice that starts
count elements from the beginning
of the array slice.
Reference