26 references to Util
System.Core (26)
System\Linq\Parallel\Enumerables\AggregationMinMaxHelpers.cs (4)
67
Comparer<T> comparer =
Util
.GetDefaultComparer<T>();
79
(!accumulator.First ||
Util
.Sign(comparer.Compare(element, accumulator.Second)) == sign))
91
Comparer<T> comparer =
Util
.GetDefaultComparer<T>();
103
(!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)
59
Util
.GetDefaultComparer<int>(),
System\Linq\Parallel\Partitioning\UnorderedHashRepartitionStream.cs (1)
30
: base(inputStream.PartitionCount,
Util
.GetDefaultComparer<int>(), keyComparer, elementComparer)
System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs (1)
204
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs (1)
147
new PartitionedStream<TInputOutput, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Inlined\InlinedAggregationOperator.cs (1)
135
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\PartitionerQueryOperator.cs (1)
149
Util
.GetDefaultComparer<int>(),
System\Linq\Parallel\QueryOperators\Unary\AnyAllSearchOperator.cs (1)
114
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\ContainsSearchOperator.cs (1)
100
PartitionedStream<bool, int> outputStream = new PartitionedStream<bool, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs (1)
90
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\FirstQueryOperator.cs (1)
85
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Unary\ForAllOperator.cs (1)
92
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs (1)
113
new PartitionedStream<TOutput, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState);
System\Linq\Parallel\QueryOperators\Unary\IndexedWhereQueryOperator.cs (1)
107
new PartitionedStream<TInputOutput, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState);
System\Linq\Parallel\QueryOperators\Unary\LastQueryOperator.cs (1)
85
new PartitionedStream<TSource, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs (2)
155
var keyComparer = new PairComparer<TLeftKey, int>(inputStream.KeyComparer,
Util
.GetDefaultComparer<int>());
172
var keyComparer = new PairComparer<int, int>(inputStream.KeyComparer,
Util
.GetDefaultComparer<int>());
System\Linq\Parallel\QueryOperators\Unary\SingleQueryOperator.cs (1)
64
partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Shuffled);
System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs (2)
46
m_comparer =
Util
.GetDefaultComparer<TSortKey>();
68
key2Comparer = key2Comparer ??
Util
.GetDefaultComparer<TKey2>();
System\Linq\Parallel\Utils\ExchangeUtilities.cs (1)
61
new PartitionedStream<T, int>(partitionCount,
Util
.GetDefaultComparer<int>(), OrdinalIndexState.Correct);
System\Linq\Parallel\Utils\FixedMaxHeap.cs (1)
38
: this(maximumSize,
Util
.GetDefaultComparer<TElement>())