You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace Cysharp.Threading.Tasks |
|
{ |
|
public static class EnumerableAsyncExtensions |
|
{ |
|
// overload resolver - .Select(async x => { }) : IEnumerable<UniTask<T>> |
|
|
|
public static IEnumerable<UniTask> Select<T>(this IEnumerable<T> source, Func<T, UniTask> selector) |
|
{ |
|
return System.Linq.Enumerable.Select(source, selector); |
|
} |
|
|
|
public static IEnumerable<UniTask<TR>> Select<T, TR>(this IEnumerable<T> source, Func<T, UniTask<TR>> selector) |
|
{ |
|
return System.Linq.Enumerable.Select(source, selector); |
|
} |
|
|
|
public static IEnumerable<UniTask> Select<T>(this IEnumerable<T> source, Func<T, int, UniTask> selector) |
|
{ |
|
return System.Linq.Enumerable.Select(source, selector); |
|
} |
|
|
|
public static IEnumerable<UniTask<TR>> Select<T, TR>(this IEnumerable<T> source, Func<T, int, UniTask<TR>> selector) |
|
{ |
|
return System.Linq.Enumerable.Select(source, selector); |
|
} |
|
} |
|
} |
|
|
|
|
|
|