System\Linq\ParallelEnumerable.cs (4)
4166return new TakeOrSkipWhileQueryOperator<TSource>(source, predicate, null, true);
4191return new TakeOrSkipWhileQueryOperator<TSource>(source, null, predicate, true);
4248return new TakeOrSkipWhileQueryOperator<TSource>(source, predicate, null, false);
4275return new TakeOrSkipWhileQueryOperator<TSource>(source, null, predicate, false);