We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parallel
public static TOut[] Parallel<T, TOut>(this T @this, params Func<T, TOut> toRun) => Task.WaitAll(toRun.Select(Task.Run));
There also should be an Action-based overload.
Action
Also, a method which would run async lambdas and async actions.
What's the name for the method?
How do we not confuse async lambdas with lambdas returning a task?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Prototype
Comments
There also should be an
Action
-based overload.Also, a method which would run async lambdas and async actions.
Unresolved questions
What's the name for the method?
How do we not confuse async lambdas with lambdas returning a task?
The text was updated successfully, but these errors were encountered: