Method WhenAll
WhenAll<R>(Seq<ZeroPad>, Func<ZeroPad, Task<R>>)
Asynchronously maps a function over a sequence of found pads.
Declaration
public static Task<Seq<R>> WhenAll<R>(Seq<ZeroPad> pads, Func<ZeroPad, Task<R>> f)
Parameters
Type | Name | Description |
---|---|---|
LanguageExt.Seq<ZeroPad> | pads | The pads. |
System.Func<ZeroPad, System.Threading.Tasks.Task<R>> | f |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<LanguageExt.Seq<R>> |
Type Parameters
Name | Description |
---|---|
R | The output type. |