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