ArraySlice<T>.Increment Method

Definition

Namespace: Extreme.Collections
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(Int32) Returns an array slice that skips the specified number of elements of the array slice.

ArraySlice<T>.Increment

Returns an array slice that starts at the second element of the array slice.
C#
public ArraySlice<T> Increment()

Return Value

ArraySlice<T>
An array slice that starts at the second element of the array slice.

ArraySlice<T>.Increment(Int32)

Returns an array slice that skips the specified number of elements of the array slice.
C#
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.

See Also