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.
public function SkipWhile(const predicate: TFunc<T, Integer, Boolean>): IEnumerable<T>; overload;
Parameters
- predicate
- Type: TFunc<T, Integer, Boolean>