26 references to Util
System.Linq.Parallel (26)
System\Linq\Parallel\Enumerables\AggregationMinMaxHelpers.cs (4)
63
Comparer<T> comparer =
Util
.GetDefaultComparer<T>();
75
(!accumulator.First ||
Util
.Sign(comparer.Compare(element, accumulator.Second)) == sign))
87
Comparer<T> comparer =
Util
.GetDefaultComparer<T>();
99
(!accumulator.First ||
Util
.Sign(comparer.Compare(element.Second, accumulator.Second)) == sign))
System\Linq\Parallel\Merging\OrderPreservingPipeliningMergeHelper.cs (1)
137
if (keyComparer ==
Util
.GetDefaultComparer<int>())
System\Linq\Parallel\Partitioning\PartitionedDataSource.cs (1)
55
Util
.GetDefaultComparer<int>(),
System\Linq\Parallel\Partitioning\UnorderedHashRepartitionStream.cs (1)
25
: base(inputStream.PartitionCount,
Util
.GetDefaultComparer<int>(), keyComparer, elementComparer)
System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs (1)
187
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
143
new PartitionedStream<TInputOutput, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Inlined\InlinedAggregationOperator.cs (1)
125
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\PartitionerQueryOperator.cs (1)
143
Util
.GetDefaultComparer<int>(),
System\Linq\Parallel\QueryOperators\Unary\AnyAllSearchOperator.cs (1)
110
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\ContainsSearchOperator.cs (1)
87
PartitionedStream<bool, int> outputStream = new PartitionedStream<bool, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (1)
86
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\FirstQueryOperator.cs (1)
83
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Unary\ForAllOperator.cs (1)
88
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (1)
109
new PartitionedStream<TOutput, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState);
System\Linq\Parallel\QueryOperators\Unary\IndexedWhereQueryOperator.cs (1)
103
new PartitionedStream<TInputOutput, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState);
System\Linq\Parallel\QueryOperators\Unary\LastQueryOperator.cs (1)
83
new PartitionedStream<TSource, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
151
var keyComparer = new PairComparer<TLeftKey, int>(inputStream.KeyComparer,
Util
.GetDefaultComparer<int>());
168
var keyComparer = new PairComparer<int, int>(inputStream.KeyComparer,
Util
.GetDefaultComparer<int>());
System\Linq\Parallel\QueryOperators\Unary\SingleQueryOperator.cs (1)
60
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (2)
41
_comparer = comparer ??
Util
.GetDefaultComparer<TSortKey>();
57
key2Comparer ??=
Util
.GetDefaultComparer<TKey2>();
System\Linq\Parallel\Utils\ExchangeUtilities.cs (1)
53
new PartitionedStream<T, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\Utils\FixedMaxHeap.cs (1)
30
: this(maximumSize,
Util
.GetDefaultComparer<TElement>())