Created
December 3, 2011 02:19
-
-
Save mmitou/1425777 to your computer and use it in GitHub Desktop.
mwarpとmbindを書くとこんな感じ
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
import Maybe | |
mwrap :: a -> Maybe a | |
mwrap v = Just v | |
mbind :: Maybe a -> (a -> Maybe b) -> Maybe b | |
mbind Nothing _ = Nothing | |
mbind (Just x) f = x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment