This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static class IAsyncEnumerableExtensions | |
{ | |
public static async IAsyncEnumerable<List<T>> TakeBatchAsync<T>(this IAsyncEnumerable<T> list, int size) | |
{ | |
var enumerator = list.GetAsyncEnumerator(); | |
var hasItems = await enumerator.MoveNextAsync(); | |
if (!hasItems) | |
{ |