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
Is your feature request related to a problem? Please describe.
The Option module includes traverse and sequence operations for use with Async (per #298), but not Task. Since the prevailing wisdom for F# code going forward seems to be "prefer Task", having these functions would encourage that choice.
Describe the solution you'd like
I'd like the following functions implemented in the Option module:
Since there are a potentially large amount of possible permutations, I'm partial to breaking this into a few issues / PRs, but this at least gets the conversation started.
Describe alternatives you've considered
Custom extensions in each codebase that needs these functions
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The
Option
module includestraverse
andsequence
operations for use withAsync
(per #298), but notTask
. Since the prevailing wisdom for F# code going forward seems to be "preferTask
", having these functions would encourage that choice.Describe the solution you'd like
I'd like the following functions implemented in the
Option
module:Additionally, some other permutations that would be useful:
To match functions added in #321
It could also be useful to have permutations that work with
IcedTasks
, such as:Since there are a potentially large amount of possible permutations, I'm partial to breaking this into a few issues / PRs, but this at least gets the conversation started.
Describe alternatives you've considered
Custom extensions in each codebase that needs these functions
The text was updated successfully, but these errors were encountered: