TEnumerableBase<T>.SkipWhile(TFunc) Method

Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function.

Namespace: Spring.Collections.Base
public
 function SkipWhile(const predicate: TFunc<T, Integer, Boolean>): IEnumerable<T>; overload;

Parameters

predicate
Type: TFunc<T, Integer, Boolean>

Return Value

Type: IEnumerable<T>

 

Implements

IEnumerable<T>.SkipWhile(TFunc)