2 instantiations of TakeOrSkipQueryOperator
System.Core (2)
System\Linq\ParallelEnumerable.cs (2)
4135return new TakeOrSkipQueryOperator<TSource>(source, count, true); 4221return new TakeOrSkipQueryOperator<TSource>(source, count, false);
3 references to TakeOrSkipQueryOperator
System.Core (3)
System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs (3)
334TakeOrSkipQueryOperator<TResult> m_takeOrSkipOp; // The operator that generated the results 338QueryResults<TResult> childQueryResults, TakeOrSkipQueryOperator<TResult> op, 354QueryResults<TResult> childQueryResults, TakeOrSkipQueryOperator<TResult> takeOrSkipOp,