Skip to content
New issue

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

Result.Err recovering #34

Open
lue-bird opened this issue Aug 9, 2022 · 0 comments
Open

Result.Err recovering #34

lue-bird opened this issue Aug 9, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@lue-bird
Copy link

lue-bird commented Aug 9, 2022

Currently there's only

Result.withDefault :
    a -> Result x a -> a

which the issue suggests to replace with

  • Result.valueElseOnError/recover :
        (x -> a) -> Result x a -> a

    which is lazy by default and makes it nearly impossible to forget error values.

  • additionally, an andThen but for the error case would be a common helpful operation

    Result.onErrorTry/recoverTry :
        (x -> Result a y) -> Result x a -> Result y a
@robinheghan robinheghan added the enhancement New feature or request label Sep 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants