@@ -73,6 +73,8 @@ public static partial class AsyncEnumerable
7373 public static System . Collections . Generic . IAsyncEnumerable < TResult > GroupBy < TSource , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , TKey > keySelector , System . Func < TKey , System . Collections . Generic . IEnumerable < TSource > , TResult > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
7474 public static System . Collections . Generic . IAsyncEnumerable < TResult > GroupBy < TSource , TKey , TElement , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > keySelector , System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TElement > > elementSelector , System . Func < TKey , System . Collections . Generic . IEnumerable < TElement > , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TResult > > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
7575 public static System . Collections . Generic . IAsyncEnumerable < TResult > GroupBy < TSource , TKey , TElement , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , TKey > keySelector , System . Func < TSource , TElement > elementSelector , System . Func < TKey , System . Collections . Generic . IEnumerable < TElement > , TResult > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
76+ public static System . Collections . Generic . IAsyncEnumerable < System . Linq . IGrouping < TOuter , TInner > > GroupJoin < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
77+ public static System . Collections . Generic . IAsyncEnumerable < System . Linq . IGrouping < TOuter , TInner > > GroupJoin < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
7678 public static System . Collections . Generic . IAsyncEnumerable < TResult > GroupJoin < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Func < TOuter , System . Collections . Generic . IEnumerable < TInner > , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TResult > > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
7779 public static System . Collections . Generic . IAsyncEnumerable < TResult > GroupJoin < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Func < TOuter , System . Collections . Generic . IEnumerable < TInner > , TResult > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
7880 public static System . Collections . Generic . IAsyncEnumerable < ( int Index , TSource Item ) > Index < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source ) { throw null ; }
@@ -81,6 +83,8 @@ public static partial class AsyncEnumerable
8183 public static System . Collections . Generic . IAsyncEnumerable < TSource > Intersect < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > first , System . Collections . Generic . IAsyncEnumerable < TSource > second , System . Collections . Generic . IEqualityComparer < TSource > ? comparer = null ) { throw null ; }
8284 public static System . Collections . Generic . IAsyncEnumerable < TResult > Join < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Func < TOuter , TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TResult > > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
8385 public static System . Collections . Generic . IAsyncEnumerable < TResult > Join < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Func < TOuter , TInner , TResult > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
86+ public static System . Collections . Generic . IAsyncEnumerable < ( TOuter Outer , TInner Inner ) > Join < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
87+ public static System . Collections . Generic . IAsyncEnumerable < ( TOuter Outer , TInner Inner ) > Join < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
8488 public static System . Threading . Tasks . ValueTask < TSource > LastAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , bool > predicate , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
8589 public static System . Threading . Tasks . ValueTask < TSource > LastAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < bool > > predicate , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
8690 public static System . Threading . Tasks . ValueTask < TSource > LastAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
@@ -92,6 +96,8 @@ public static partial class AsyncEnumerable
9296 public static System . Threading . Tasks . ValueTask < TSource > LastOrDefaultAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , TSource defaultValue , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
9397 public static System . Collections . Generic . IAsyncEnumerable < TResult > LeftJoin < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Func < TOuter , TInner ? , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TResult > > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
9498 public static System . Collections . Generic . IAsyncEnumerable < TResult > LeftJoin < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Func < TOuter , TInner ? , TResult > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
99+ public static System . Collections . Generic . IAsyncEnumerable < ( TOuter Outer , TInner ? Inner ) > LeftJoin < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
100+ public static System . Collections . Generic . IAsyncEnumerable < ( TOuter Outer , TInner ? Inner ) > LeftJoin < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
95101 public static System . Threading . Tasks . ValueTask < long > LongCountAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , bool > predicate , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
96102 public static System . Threading . Tasks . ValueTask < long > LongCountAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < bool > > predicate , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
97103 public static System . Threading . Tasks . ValueTask < long > LongCountAsync < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
@@ -114,6 +120,8 @@ public static partial class AsyncEnumerable
114120 public static System . Collections . Generic . IAsyncEnumerable < TSource > Reverse < TSource > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source ) { throw null ; }
115121 public static System . Collections . Generic . IAsyncEnumerable < TResult > RightJoin < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Func < TOuter ? , TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TResult > > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
116122 public static System . Collections . Generic . IAsyncEnumerable < TResult > RightJoin < TOuter , TInner , TKey , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Func < TOuter ? , TInner , TResult > resultSelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
123+ public static System . Collections . Generic . IAsyncEnumerable < ( TOuter ? Outer , TInner Inner ) > RightJoin < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > outerKeySelector , System . Func < TInner , System . Threading . CancellationToken , System . Threading . Tasks . ValueTask < TKey > > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
124+ public static System . Collections . Generic . IAsyncEnumerable < ( TOuter ? Outer , TInner Inner ) > RightJoin < TOuter , TInner , TKey > ( this System . Collections . Generic . IAsyncEnumerable < TOuter > outer , System . Collections . Generic . IAsyncEnumerable < TInner > inner , System . Func < TOuter , TKey > outerKeySelector , System . Func < TInner , TKey > innerKeySelector , System . Collections . Generic . IEqualityComparer < TKey > ? comparer = null ) { throw null ; }
117125 public static System . Collections . Generic . IAsyncEnumerable < TResult > SelectMany < TSource , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , System . Collections . Generic . IAsyncEnumerable < TResult > > selector ) { throw null ; }
118126 public static System . Collections . Generic . IAsyncEnumerable < TResult > SelectMany < TSource , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , System . Collections . Generic . IEnumerable < TResult > > selector ) { throw null ; }
119127 public static System . Collections . Generic . IAsyncEnumerable < TResult > SelectMany < TSource , TResult > ( this System . Collections . Generic . IAsyncEnumerable < TSource > source , System . Func < TSource , int , System . Collections . Generic . IAsyncEnumerable < TResult > > selector ) { throw null ; }
0 commit comments