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
reference https://github.com/cbefus/optional.py/blob/master/optional/something.py#L30
if we map an example function that returns nothing (None) then we will create a nothing from something and any attached or_else etc. will be called.
or_else
Example:
def do_stuff(stuff): print(stuff) Optional.of("Hello").map(do_stuff).or_else_raise(Exception("BOOM"))
This will print "Hello" but will also raise the "BOOM" exception!
The text was updated successfully, but these errors were encountered:
This is hard to solve without a type system.
Sorry, something went wrong.
I think we have to assume this is working as designed. You should be using if_present with the do_stuff method.
if_present
Yes. non-issue - my bad.
dpassen
No branches or pull requests
reference https://github.com/cbefus/optional.py/blob/master/optional/something.py#L30
if we map an example function that returns nothing (None) then we will create a nothing from something and any attached
or_else
etc. will be called.Example:
This will print "Hello" but will also raise the "BOOM" exception!
The text was updated successfully, but these errors were encountered: