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
I would like to understand the use case better here... What can be accomplished (or made easier by) using Option<Task<T>> that can't with Task<Option<T>>?
The problem actually has to do with backward compatibility. There's a Some method that's obsolete that accepts a Task<>. This was from before I introduced the explicit Async methods. Not sure how I can solve this.
It is not possible to create an
Option<Task<T>>
using.Some
.Both
Option.Some(Task<T>)
andOption.SomeAsync(Task<T>)
produceTask<Option<T>>
.The text was updated successfully, but these errors were encountered: