TEnumerableBase<T>.SkipWhile(TPredicate<T>) Method

Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.

Namespace: Spring.Collections.Base
public
 function SkipWhile(const predicate: TPredicate<T>): IEnumerable<T>; overload;

Parameters

predicate
Type: TPredicate<T>

Return Value

Type: IEnumerable<T>

 

Implements

IEnumerable<T>.SkipWhile(TPredicate<T>)