5 references to SortQueryOperator
System.Linq.Parallel (5)
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (1)
68return new SortQueryOperator<TInputOutput, Pair<TSortKey, TKey2>>(Child, pairKeySelector, pairComparer, false);
System\Linq\ParallelEnumerable.cs (4)
1071new SortQueryOperator<TSource, TKey>(source, keySelector, null, false)); 1099new SortQueryOperator<TSource, TKey>(source, keySelector, comparer, false)); 1125return new OrderedParallelQuery<TSource>(new SortQueryOperator<TSource, TKey>(source, keySelector, null, true)); 1153new SortQueryOperator<TSource, TKey>(source, keySelector, comparer, true));