System\Linq\ParallelEnumerable.cs (4)
4141return new TakeOrSkipWhileQueryOperator<TSource>(source, predicate, null, true);
4166return new TakeOrSkipWhileQueryOperator<TSource>(source, null, predicate, true);
4223return new TakeOrSkipWhileQueryOperator<TSource>(source, predicate, null, false);
4250return new TakeOrSkipWhileQueryOperator<TSource>(source, null, predicate, false);