6 instantiations of AsyncLookup
System.Linq.AsyncEnumerable (6)
System\Linq\ToLookupAsync.cs (6)
52AsyncLookup<TKey, TSource> lookup = new(comparer); 107AsyncLookup<TKey, TSource> lookup = new(comparer); 166AsyncLookup<TKey, TElement> lookup = new(comparer); 226AsyncLookup<TKey, TElement> lookup = new(comparer); 313AsyncLookup<TKey, TElement> lookup = new(comparer); 335AsyncLookup<TKey, TElement> lookup = new(comparer);
28 references to AsyncLookup
System.Linq.AsyncEnumerable (28)
System\Linq\GroupBy.cs (4)
222if (await ToLookupAsync(source, keySelector, comparer, cancellationToken).ConfigureAwait(false) is AsyncLookup<TKey, TSource> lookup) 271if (await ToLookupAsync(source, keySelector, comparer, cancellationToken).ConfigureAwait(false) is AsyncLookup<TKey, TSource> lookup) 325if (await ToLookupAsync(source, keySelector, elementSelector, comparer, cancellationToken).ConfigureAwait(false) is AsyncLookup<TKey, TElement> lookup) 379if (await ToLookupAsync(source, keySelector, elementSelector, comparer, cancellationToken).ConfigureAwait(false) is AsyncLookup<TKey, TElement> lookup)
System\Linq\GroupJoin.cs (4)
68AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false); 139AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\Join.cs (4)
64AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false); 144AsyncLookup<TKey, TInner> lookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\LeftJoin.cs (4)
61AsyncLookup<TKey, TInner> innerLookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false); 139AsyncLookup<TKey, TInner> innerLookup = await AsyncLookup<TKey, TInner>.CreateForJoinAsync(inner, innerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\RightJoin.cs (4)
62AsyncLookup<TKey, TOuter> outerLookup = await AsyncLookup<TKey, TOuter>.CreateForJoinAsync(outer, outerKeySelector, comparer, cancellationToken).ConfigureAwait(false); 140AsyncLookup<TKey, TOuter> outerLookup = await AsyncLookup<TKey, TOuter>.CreateForJoinAsync(outer, outerKeySelector, comparer, cancellationToken).ConfigureAwait(false);
System\Linq\ToLookupAsync.cs (8)
52AsyncLookup<TKey, TSource> lookup = new(comparer); 107AsyncLookup<TKey, TSource> lookup = new(comparer); 166AsyncLookup<TKey, TElement> lookup = new(comparer); 226AsyncLookup<TKey, TElement> lookup = new(comparer); 304internal static async ValueTask<AsyncLookup<TKey, TElement>> CreateForJoinAsync( 313AsyncLookup<TKey, TElement> lookup = new(comparer); 326internal static async ValueTask<AsyncLookup<TKey, TElement>> CreateForJoinAsync( 335AsyncLookup<TKey, TElement> lookup = new(comparer);