6 instantiations of AsyncLookup
System.Linq.AsyncEnumerable (6)
32 references to AsyncLookup
System.Linq.AsyncEnumerable (32)
System\Linq\GroupBy.cs (8)
212var lookup = (AsyncLookup<TKey, TSource>)await ToLookupAsync(source, keySelector, comparer, cancellationToken).ConfigureAwait(false);
257var lookup = (AsyncLookup<TKey, TSource>)await ToLookupAsync(source, keySelector, comparer, cancellationToken).ConfigureAwait(false);
307var lookup = (AsyncLookup<TKey, TElement>)await ToLookupAsync(source, keySelector, elementSelector, comparer, cancellationToken).ConfigureAwait(false);
357var lookup = (AsyncLookup<TKey, TElement>)await ToLookupAsync(source, keySelector, elementSelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\GroupJoin.cs (4)
66AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
135AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\Join.cs (4)
62AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
140AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\LeftJoin.cs (4)
59AsyncLookup<TKey, TInner> innerLookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
135AsyncLookup<TKey, TInner> innerLookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\RightJoin.cs (4)
60AsyncLookup<TKey, TOuter> outerLookup = await AsyncLookup<TKey, TOuter>.CreateForJoinAsync(outer, outerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
136AsyncLookup<TKey, TOuter> outerLookup = await AsyncLookup<TKey, TOuter>.CreateForJoinAsync(outer, outerKeySelector, comparer, cancellationToken).ConfigureAwait(false);