Skip to content

Instantly share code, notes, and snippets.

@mmitou
Created December 3, 2011 02:19
Show Gist options
  • Save mmitou/1425777 to your computer and use it in GitHub Desktop.
Save mmitou/1425777 to your computer and use it in GitHub Desktop.
mwarpとmbindを書くとこんな感じ
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