Idris2Doc : Control.Monad.Trans

Control.Monad.Trans

Definitions

interfaceMonadTrans : ((Type->Type) ->Type->Type) ->Type
  A monad transformer is a type that can wrap an inner monad, extending it
with additional abilities.

Parameters: t
Methods:
lift : Monadm=>ma->tma
  Lift a computation from the inner monad to the transformed monad.

Implementations:
MonadTrans (EitherTe)
MonadTransMaybeT
MonadTrans (RWSTrws)
MonadTrans (ReaderTstateType)
MonadTrans (StateTstateType)
MonadTrans (WriterTw)
lift : MonadTranst=>Monadm=>ma->tma
  Lift a computation from the inner monad to the transformed monad.

Totality: total
Visibility: public export