System\Linq\ParallelEnumerable.cs (4)
4138return new TakeOrSkipWhileQueryOperator<TSource>(source, predicate, null, true);
4163return new TakeOrSkipWhileQueryOperator<TSource>(source, null, predicate, true);
4220return new TakeOrSkipWhileQueryOperator<TSource>(source, predicate, null, false);
4247return new TakeOrSkipWhileQueryOperator<TSource>(source, null, predicate, false);