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 is not a lawful Monad #147

Open
benjamin-hodgson opened this issue Aug 5, 2017 · 0 comments
Open

Result is not a lawful Monad #147

benjamin-hodgson opened this issue Aug 5, 2017 · 0 comments

Comments

@benjamin-hodgson
Copy link

benjamin-hodgson commented Aug 5, 2017

Result's Monad instance violates the (<*>) = ap law.

ghci> Error "a" `ap` Error "b"
Error "a"
ghci> Error "a" <*> Error "b"
Error "ab"

This is a potential "gotcha" and it should at least be documented.

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

1 participant