|
1 |
| -static SuperLinq.Async.AsyncSuperEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, TKey>! keySelector, System.Func<TKey, TAccumulate>! seedSelector, System.Func<TAccumulate, TSource, TAccumulate>! func, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.KeyValuePair<TKey, TAccumulate>>! |
| 1 | +static SuperLinq.Async.AsyncSuperEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, TKey>! keySelector, System.Func<TKey, TAccumulate>! seedSelector, System.Func<TAccumulate, TSource, TAccumulate>! func, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.KeyValuePair<TKey, TAccumulate>>! |
2 | 2 | static SuperLinq.Async.AsyncSuperEnumerable.AggregateBy<TSource, TKey, TAccumulate>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, TKey>! keySelector, TAccumulate seed, System.Func<TAccumulate, TSource, TAccumulate>! func, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<System.Collections.Generic.KeyValuePair<TKey, TAccumulate>>!
|
3 | 3 | static SuperLinq.Async.AsyncSuperEnumerable.AggregateRight<TSource, TAccumulate, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, TAccumulate seed, System.Func<TSource, TAccumulate, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TAccumulate>>! func, System.Func<TAccumulate, System.Threading.CancellationToken, System.Threading.Tasks.ValueTask<TResult>>! resultSelector, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<TResult>
|
4 | 4 | static SuperLinq.Async.AsyncSuperEnumerable.AggregateRight<TSource, TAccumulate, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, TAccumulate seed, System.Func<TSource, TAccumulate, System.Threading.Tasks.ValueTask<TAccumulate>>! func, System.Func<TAccumulate, System.Threading.Tasks.ValueTask<TResult>>! resultSelector, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<TResult>
|
@@ -114,8 +114,6 @@ static SuperLinq.Async.AsyncSuperEnumerable.FillForward<T>(this System.Collectio
|
114 | 114 | static SuperLinq.Async.AsyncSuperEnumerable.FillForward<T>(this System.Collections.Generic.IAsyncEnumerable<T>! source, System.Func<T, System.Threading.Tasks.ValueTask<bool>>! predicate) -> System.Collections.Generic.IAsyncEnumerable<T>!
|
115 | 115 | static SuperLinq.Async.AsyncSuperEnumerable.FillForward<T>(this System.Collections.Generic.IAsyncEnumerable<T>! source) -> System.Collections.Generic.IAsyncEnumerable<T>!
|
116 | 116 | static SuperLinq.Async.AsyncSuperEnumerable.Finally<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Action! finallyAction) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
|
117 |
| -static SuperLinq.Async.AsyncSuperEnumerable.FindIndex<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, bool>! predicate, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<int> |
118 |
| -static SuperLinq.Async.AsyncSuperEnumerable.FindLastIndex<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, bool>! predicate, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<int> |
119 | 117 | static SuperLinq.Async.AsyncSuperEnumerable.Fold<T, TResult>(this System.Collections.Generic.IAsyncEnumerable<T>! source, System.Func<T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>! folder) -> System.Threading.Tasks.ValueTask<TResult>
|
120 | 118 | static SuperLinq.Async.AsyncSuperEnumerable.Fold<T, TResult>(this System.Collections.Generic.IAsyncEnumerable<T>! source, System.Func<T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>! folder) -> System.Threading.Tasks.ValueTask<TResult>
|
121 | 119 | static SuperLinq.Async.AsyncSuperEnumerable.Fold<T, TResult>(this System.Collections.Generic.IAsyncEnumerable<T>! source, System.Func<T, T, T, T, T, T, T, T, T, T, T, T, T, T, TResult>! folder) -> System.Threading.Tasks.ValueTask<TResult>
|
@@ -183,21 +181,18 @@ static SuperLinq.Async.AsyncSuperEnumerable.Index<TSource>(this System.Collectio
|
183 | 181 | static SuperLinq.Async.AsyncSuperEnumerable.Index<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source) -> System.Collections.Generic.IAsyncEnumerable<(int index, TSource item)>!
|
184 | 182 | static SuperLinq.Async.AsyncSuperEnumerable.IndexBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, TKey>! keySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer) -> System.Collections.Generic.IAsyncEnumerable<(int index, TSource item)>!
|
185 | 183 | static SuperLinq.Async.AsyncSuperEnumerable.IndexBy<TSource, TKey>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, System.Func<TSource, TKey>! keySelector) -> System.Collections.Generic.IAsyncEnumerable<(int index, TSource item)>!
|
186 |
| -static SuperLinq.Async.AsyncSuperEnumerable.IndexOf<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, TSource item, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<int> |
187 | 184 | static SuperLinq.Async.AsyncSuperEnumerable.InnerHashJoin<TLeft, TRight, TKey, TResult>(this System.Collections.Generic.IAsyncEnumerable<TLeft>! left, System.Collections.Generic.IAsyncEnumerable<TRight>! right, System.Func<TLeft, TKey>! leftKeySelector, System.Func<TRight, TKey>! rightKeySelector, System.Func<TLeft, TRight, TResult>! bothResultSelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
188 | 185 | static SuperLinq.Async.AsyncSuperEnumerable.InnerHashJoin<TLeft, TRight, TKey>(this System.Collections.Generic.IAsyncEnumerable<TLeft>! left, System.Collections.Generic.IAsyncEnumerable<TRight>! right, System.Func<TLeft, TKey>! leftKeySelector, System.Func<TRight, TKey>! rightKeySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<(TLeft Left, TRight Right)>!
|
189 | 186 | static SuperLinq.Async.AsyncSuperEnumerable.InnerLoopJoin<TLeft, TRight, TKey, TResult>(this System.Collections.Generic.IAsyncEnumerable<TLeft>! left, System.Collections.Generic.IAsyncEnumerable<TRight>! right, System.Func<TLeft, TKey>! leftKeySelector, System.Func<TRight, TKey>! rightKeySelector, System.Func<TLeft, TRight, TResult>! bothResultSelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
190 | 187 | static SuperLinq.Async.AsyncSuperEnumerable.InnerLoopJoin<TLeft, TRight, TKey>(this System.Collections.Generic.IAsyncEnumerable<TLeft>! left, System.Collections.Generic.IAsyncEnumerable<TRight>! right, System.Func<TLeft, TKey>! leftKeySelector, System.Func<TRight, TKey>! rightKeySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<(TLeft Left, TRight Right)>!
|
191 | 188 | static SuperLinq.Async.AsyncSuperEnumerable.InnerMergeJoin<TLeft, TRight, TKey, TResult>(this System.Collections.Generic.IAsyncEnumerable<TLeft>! left, System.Collections.Generic.IAsyncEnumerable<TRight>! right, System.Func<TLeft, TKey>! leftKeySelector, System.Func<TRight, TKey>! rightKeySelector, System.Func<TLeft, TRight, TResult>! bothResultSelector, System.Collections.Generic.IComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
192 | 189 | static SuperLinq.Async.AsyncSuperEnumerable.InnerMergeJoin<TLeft, TRight, TKey>(this System.Collections.Generic.IAsyncEnumerable<TLeft>! left, System.Collections.Generic.IAsyncEnumerable<TRight>! right, System.Func<TLeft, TKey>! leftKeySelector, System.Func<TRight, TKey>! rightKeySelector, System.Collections.Generic.IComparer<TKey>? comparer = null) -> System.Collections.Generic.IAsyncEnumerable<(TLeft Left, TRight Right)>!
|
193 |
| -static SuperLinq.Async.AsyncSuperEnumerable.Insert<T>(this System.Collections.Generic.IAsyncEnumerable<T>! first, System.Collections.Generic.IAsyncEnumerable<T>! second, int index) -> System.Collections.Generic.IAsyncEnumerable<T>! |
194 | 190 | static SuperLinq.Async.AsyncSuperEnumerable.Interleave<T>(this System.Collections.Generic.IAsyncEnumerable<T>! source, params System.Collections.Generic.IAsyncEnumerable<T>![]! otherSources) -> System.Collections.Generic.IAsyncEnumerable<T>!
|
195 | 191 | static SuperLinq.Async.AsyncSuperEnumerable.Interleave<T>(this System.Collections.Generic.IEnumerable<System.Collections.Generic.IAsyncEnumerable<T>!>! sources) -> System.Collections.Generic.IAsyncEnumerable<T>!
|
196 | 192 | static SuperLinq.Async.AsyncSuperEnumerable.Lag<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, TResult>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
197 | 193 | static SuperLinq.Async.AsyncSuperEnumerable.Lag<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLagValue, System.Func<TSource, TSource, System.Threading.Tasks.ValueTask<TResult>>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
198 | 194 | static SuperLinq.Async.AsyncSuperEnumerable.Lag<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLagValue, System.Func<TSource, TSource, TResult>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
199 | 195 | static SuperLinq.Async.AsyncSuperEnumerable.Lag<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset) -> System.Collections.Generic.IAsyncEnumerable<(TSource current, TSource? lag)>!
|
200 |
| -static SuperLinq.Async.AsyncSuperEnumerable.LastIndexOf<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, TSource item, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<int> |
201 | 196 | static SuperLinq.Async.AsyncSuperEnumerable.Lead<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, System.Func<TSource, TSource?, TResult>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
202 | 197 | static SuperLinq.Async.AsyncSuperEnumerable.Lead<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLeadValue, System.Func<TSource, TSource, System.Threading.Tasks.ValueTask<TResult>>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
203 | 198 | static SuperLinq.Async.AsyncSuperEnumerable.Lead<TSource, TResult>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int offset, TSource defaultLeadValue, System.Func<TSource, TSource, TResult>! resultSelector) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
@@ -265,7 +260,6 @@ static SuperLinq.Async.AsyncSuperEnumerable.RankBy<TSource, TKey>(this System.Co
|
265 | 260 | static SuperLinq.Async.AsyncSuperEnumerable.Repeat<TResult>(TResult value) -> System.Collections.Generic.IAsyncEnumerable<TResult>!
|
266 | 261 | static SuperLinq.Async.AsyncSuperEnumerable.Repeat<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int count) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
|
267 | 262 | static SuperLinq.Async.AsyncSuperEnumerable.Repeat<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
|
268 |
| -static SuperLinq.Async.AsyncSuperEnumerable.Replace<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int index, TSource value) -> System.Collections.Generic.IAsyncEnumerable<TSource>! |
269 | 263 | static SuperLinq.Async.AsyncSuperEnumerable.Retry<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source, int count) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
|
270 | 264 | static SuperLinq.Async.AsyncSuperEnumerable.Retry<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource>! source) -> System.Collections.Generic.IAsyncEnumerable<TSource>!
|
271 | 265 | static SuperLinq.Async.AsyncSuperEnumerable.Return<T>(T item) -> System.Collections.Generic.IAsyncEnumerable<T>!
|
|
0 commit comments