2 instantiations of TakeOrSkipQueryOperator
System.Linq.Parallel (2)
System\Linq\ParallelEnumerable.cs (2)
4107return new TakeOrSkipQueryOperator<TSource>(source, count, true); 4193return new TakeOrSkipQueryOperator<TSource>(source, count, false);
3 references to TakeOrSkipQueryOperator
System.Linq.Parallel (3)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (3)
335private readonly TakeOrSkipQueryOperator<TResult> _takeOrSkipOp; // The operator that generated the results 339QueryResults<TResult> childQueryResults, TakeOrSkipQueryOperator<TResult> op, 355QueryResults<TResult> childQueryResults, TakeOrSkipQueryOperator<TResult> takeOrSkipOp,