3 types derived from HashLookupBuilder
System.Linq.Parallel (3)
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (2)
217internal sealed class GroupJoinHashLookupBuilder<TElement, TOrderKey, THashKey> : HashLookupBuilder<IEnumerable<TElement>, int, THashKey> 303internal sealed class OrderedGroupJoinHashLookupBuilder<TElement, TOrderKey, THashKey> : HashLookupBuilder<IEnumerable<TElement>, Pair<bool, TOrderKey>, THashKey>
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
194internal sealed class JoinHashLookupBuilder<TElement, TOrderKey, THashKey> : HashLookupBuilder<TElement, TOrderKey, THashKey>
8 references to HashLookupBuilder
System.Linq.Parallel (8)
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (6)
106HashLookupBuilder<IEnumerable<TRightInput>, Pair<bool, TRightKey>, TKey>[] rightLookupBuilders = 107new HashLookupBuilder<IEnumerable<TRightInput>, Pair<bool, TRightKey>, TKey>[partitionCount]; 122HashLookupBuilder<IEnumerable<TRightInput>, int, TKey>[] rightLookupBuilders = 123new HashLookupBuilder<IEnumerable<TRightInput>, int, TKey>[partitionCount]; 137HashLookupBuilder<IEnumerable<TRightInput>, TRightKey, TKey>[] rightLookupBuilders, 170HashLookupBuilder<IEnumerable<TRightInput>, TRightKey, TKey>[] rightLookupBuilders,
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (2)
42private readonly HashLookupBuilder<TRightInput, TRightKey, THashKey> _rightLookupBuilder; // Right (inner) data source. For building. 64HashLookupBuilder<TRightInput, TRightKey, THashKey> rightLookupBuilder,