Created
April 23, 2013 20:38
-
-
Save yangsu/5447170 to your computer and use it in GitHub Desktop.
Haskell Maybe Monad
This file contains 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
instance Monad Maybe where | |
return x = Just x | |
Nothing >>= f = Nothing | |
Just x >>= f = f x | |
fail _ = Nothing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment