You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, only Tasks are supported by the library.
However there is also ValueTask which would be a nice addition on their own and also together in Tuples with normal Taskss.
The text was updated successfully, but these errors were encountered:
There's no way to generalize between Task and ValueTask without an exponential explosion of code. I would suggest doing the same as you would already have to do with ValueTasks when you want to use them with Task.WhenAll: use .AsTask() on each ValueTask.
At the moment, only
Task
s are supported by the library.However there is also
ValueTask
which would be a nice addition on their own and also together inTuple
s with normalTasks
s.The text was updated successfully, but these errors were encountered: