Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
FreeC.Monad.Class.Hoistable
Description
This module defines type classes for converting between monads and their monad transformer counterparts.
Synopsis
- class MonadTrans t => Hoistable t where
- class Hoistable t => UnHoistable t where
- hoistMaybe :: Monad m => Maybe a -> MaybeT m a
Documentation
class MonadTrans t => Hoistable t where Source #
Type class for monad transformers whose inner monad can be lifted from
Identity
to some arbitrary Monad
.
Methods
hoist :: Monad m => t Identity a -> t m a Source #
Lifts the transformed identity monad to any transformed monad.
Instances
Hoistable ReporterT Source # | The reporter monad can be lifted to any reporter transformer. |
Hoistable ConverterT Source # | The converter monad can be lifted to any converter transformer. |
Defined in FreeC.Monad.Converter Methods hoist :: Monad m => ConverterT Identity a -> ConverterT m a Source # |
class Hoistable t => UnHoistable t where Source #