Array Slice<T>.Increment Method
Definition
Namespace: Extreme.Collections
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Increment() | Returns an array slice that starts at the second element of the array slice. |
Increment( | Returns an array slice that skips the specified number of elements of the array slice. |
Increment
Returns an array slice that starts at the second element of the array slice.
public ArraySlice<T> Increment()
Return Value
ArraySlice<T>An array slice that starts at the second element of the array slice.
Increment(Int32)
Returns an array slice that skips the specified number of elements of the array slice.
public ArraySlice<T> Increment(
int count
)
Parameters
- count Int32
- The index of the first element of the new array slice.
Return Value
ArraySlice<T>An array slice that starts count elements from the beginning of the array slice.