123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using Cysharp.Threading.Tasks.Internal;
- using System.Collections.Generic;
- using System.Threading;
- namespace Cysharp.Threading.Tasks.Linq
- {
- public static partial class UniTaskAsyncEnumerable
- {
- public static UniTask<List<TSource>> ToListAsync<TSource>(this IUniTaskAsyncEnumerable<TSource> source, CancellationToken cancellationToken = default)
- {
- Error.ThrowArgumentNullException(source, nameof(source));
- return Cysharp.Threading.Tasks.Linq.ToList.ToListAsync(source, cancellationToken);
- }
- }
- internal static class ToList
- {
- internal static async UniTask<List<TSource>> ToListAsync<TSource>(IUniTaskAsyncEnumerable<TSource> source, CancellationToken cancellationToken)
- {
- var list = new List<TSource>();
- var e = source.GetAsyncEnumerator(cancellationToken);
- try
- {
- while (await e.MoveNextAsync())
- {
- list.Add(e.Current);
- }
- }
- finally
- {
- if (e != null)
- {
- await e.DisposeAsync();
- }
- }
- return list;
- }
- }
- }
|