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