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

If the function called in map does not return anything, it will convert to a nothing, and call followup or elses #20

Closed
cbefus opened this issue Oct 12, 2018 · 3 comments
Assignees

Comments

@cbefus
Copy link
Collaborator

cbefus commented Oct 12, 2018

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:

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!

@dpassen
Copy link
Collaborator

dpassen commented Oct 17, 2018

This is hard to solve without a type system.

@dpassen
Copy link
Collaborator

dpassen commented Oct 17, 2018

I think we have to assume this is working as designed. You should be using if_present with the do_stuff method.

@cbefus
Copy link
Collaborator Author

cbefus commented Oct 19, 2018

Yes. non-issue - my bad.

@cbefus cbefus closed this as completed Oct 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants