summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2010-03-04 12:40:04 +0000
committersimonpj@microsoft.com <unknown>2010-03-04 12:40:04 +0000
commita5b8386a8ce31296c3b748a965f54b0c16948c09 (patch)
tree5a8a4a8bb3214415ea98967c91a119dbf702772a /compiler
parent12da626e907fd4b43272d7fa9a98ebc1a4bb0ebe (diff)
downloadhaskell-a5b8386a8ce31296c3b748a965f54b0c16948c09.tar.gz
Add fmapMaybeM and fmapEitherM
Diffstat (limited to 'compiler')
-rw-r--r--compiler/utils/MonadUtils.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler/utils/MonadUtils.hs b/compiler/utils/MonadUtils.hs
index 5e01a222b2..dc54620c20 100644
--- a/compiler/utils/MonadUtils.hs
+++ b/compiler/utils/MonadUtils.hs
@@ -19,6 +19,7 @@ module MonadUtils
, mapSndM
, concatMapM
, mapMaybeM
+ , fmapMaybeM, fmapEitherM
, anyM, allM
, foldlM, foldlM_, foldrM
, maybeMapM
@@ -148,6 +149,16 @@ concatMapM f xs = liftM concat (mapM f xs)
mapMaybeM :: (Monad m) => (a -> m (Maybe b)) -> [a] -> m [b]
mapMaybeM f = liftM catMaybes . mapM f
+-- | Monadic version of fmap
+fmapMaybeM :: (Monad m) => (a -> m b) -> Maybe a -> m (Maybe b)
+fmapMaybeM _ Nothing = return Nothing
+fmapMaybeM f (Just x) = f x >>= (return . Just)
+
+-- | Monadic version of fmap
+fmapEitherM :: Monad m => (a -> m b) -> (c -> m d) -> Either a c -> m (Either b d)
+fmapEitherM fl _ (Left a) = fl a >>= (return . Left)
+fmapEitherM _ fr (Right b) = fr b >>= (return . Right)
+
-- | Monadic version of 'any', aborts the computation at the first @True@ value
anyM :: Monad m => (a -> m Bool) -> [a] -> m Bool
anyM _ [] = return False