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