{- | Copyright: (c) 2016 Stephen Diehl (c) 20016-2018 Serokell (c) 2018 Kowainik License: MIT Maintainer: Kowainik Monadic boolean combinators. -} module Relude.Bool.Guard ( guardM , ifM , unlessM , whenM ) where import Relude.Bool.Reexport (Bool, guard, unless, when) import Relude.Function (flip) import Relude.Monad (Monad, MonadPlus, (>>=)) -- $setup -- >>> import Relude.Applicative (pure) -- >>> import Relude.Bool.Reexport (Bool (..)) -- >>> import Relude.Function (($)) -- >>> import Relude.Monad (Maybe (..)) -- >>> import Relude.Print (putTextLn) -- | Monadic version of 'when'. -- -- >>> whenM (pure False) $ putTextLn "No text :(" -- >>> whenM (pure True) $ putTextLn "Yes text :)" -- Yes text :) -- >>> whenM (Just True) (pure ()) -- Just () -- >>> whenM (Just False) (pure ()) -- Just () -- >>> whenM Nothing (pure ()) -- Nothing whenM :: Monad m => m Bool -> m () -> m () whenM p m = p >>= flip when m {-# INLINE whenM #-} -- | Monadic version of 'unless'. -- -- >>> unlessM (pure False) $ putTextLn "No text :(" -- No text :( -- >>> unlessM (pure True) $ putTextLn "Yes text :)" unlessM :: Monad m => m Bool -> m () -> m () unlessM p m = p >>= flip unless m {-# INLINE unlessM #-} -- | Monadic version of @if-then-else@. -- -- >>> ifM (pure True) (putTextLn "True text") (putTextLn "False text") -- True text ifM :: Monad m => m Bool -> m a -> m a -> m a ifM p x y = p >>= \b -> if b then x else y {-# INLINE ifM #-} -- | Monadic version of 'guard'. Occasionally useful. -- Here some complex but real-life example: -- -- @ -- findSomePath :: IO (Maybe FilePath) -- -- somePath :: MaybeT IO FilePath -- somePath = do -- path <- MaybeT findSomePath -- guardM $ liftIO $ doesDirectoryExist path -- return path -- @ guardM :: MonadPlus m => m Bool -> m () guardM f = f >>= guard {-# INLINE guardM #-}