Created
November 12, 2014 15:40
-
-
Save wfaler/70f20f9f27f9fc66bf61 to your computer and use it in GitHub Desktop.
Must be a better way? some configuration of MaybeT?
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
ioMaybe :: Maybe a -> (a -> IO (Maybe b)) -> IO (Maybe b) | |
ioMaybe (Just a) fn = fn a | |
ioMaybe Nothing _ = return Nothing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not sure if this is any more concise but it works: