2 instantiations of HashLookupValueList
System.Linq.Parallel (2)
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
442value = new HashLookupValueList<IEnumerable<TElement>, TOrderKey>(valueList.First, valueList.Second);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (1)
244currentValue = new HashLookupValueList<TElement, TOrderKey>(element, orderKey);
13 references to HashLookupValueList
System.Linq.Parallel (13)
System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs (1)
439public override bool TryGetValue(THashKey key, ref HashLookupValueList<IEnumerable<TElement>, TOrderKey> value)
System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs (3)
126HashLookupValueList<TRightInput, TRightKey> matchValue = default(HashLookupValueList<TRightInput, TRightKey>); 316public abstract bool TryGetValue(THashKey key, ref HashLookupValueList<TElement, TOrderKey> value);
System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs (9)
209HashLookup<THashKey, HashLookupValueList<TElement, TOrderKey>> lookup = 210new HashLookup<THashKey, HashLookupValueList<TElement, TOrderKey>>(_keyComparer); 230private readonly HashLookup<THashKey, HashLookupValueList<TElement, TOrderKey>> _base; 232public JoinBaseHashBuilder(HashLookup<THashKey, HashLookupValueList<TElement, TOrderKey>> baseLookup) 241HashLookupValueList<TElement, TOrderKey> currentValue = default(HashLookupValueList<TElement, TOrderKey>); 267private readonly HashLookup<THashKey, HashLookupValueList<TElement, TOrderKey>> _base; 269internal JoinHashLookup(HashLookup<THashKey, HashLookupValueList<TElement, TOrderKey>> baseLookup) 276public override bool TryGetValue(THashKey key, ref HashLookupValueList<TElement, TOrderKey> value)