Created
July 2, 2016 17:52
-
-
Save deech/55df1c168eb5222740fb87b743df7e9a to your computer and use it in GitHub Desktop.
liftM2 equivalent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
monadic = do | |
x <- [0,1] | |
y <- [0,2] | |
return (x + y) | |
applicative = (+) <$> [0,1] <*> [0,2] | |
comprehension = [(x + y) | x <- [0,1], y <- [0,2] ] | |
main = do | |
print monadic | |
print applicative | |
print comprehension |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment