transformers-lift-0.1.0.0: src/Control/Monad/Trans/Lift/Local.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE RankNTypes #-}
-- | Lifting the 'local' operation.
module Control.Monad.Trans.Lift.Local
( LiftLocal(..)
, Local
, defaultLiftLocal
, module Control.Monad.Trans.Class
) where
#if __GLASGOW_HASKELL__ < 710
import Data.Monoid
#endif
import Control.Monad.Trans.Class
import qualified Control.Monad.Trans.Cont as C
import qualified Control.Monad.Trans.Except as E
import qualified Control.Monad.Trans.Identity as I
import qualified Control.Monad.Trans.List as L
import qualified Control.Monad.Trans.Maybe as M
import qualified Control.Monad.Trans.Reader as R
import qualified Control.Monad.Trans.RWS.Lazy as RWS.Lazy
import qualified Control.Monad.Trans.RWS.Strict as RWS.Strict
import qualified Control.Monad.Trans.State.Lazy as S.Lazy
import qualified Control.Monad.Trans.State.Strict as S.Strict
import qualified Control.Monad.Trans.Writer.Lazy as W.Lazy
import qualified Control.Monad.Trans.Writer.Strict as W.Strict
-- | Signature of the @local@ operation,
-- introduced in "Control.Monad.Trans.Reader".
type Local r m a = (r -> r) -> m a -> m a
-- | The class of monad transformers capable of lifting 'local'.
class MonadTrans t => LiftLocal t where
-- | Lift the 'local' operation.
liftLocal :: Monad m => m r -> (forall a . Local r m a)
-> (forall a . Local r (t m) a)
-- | Default definition for the 'liftLocal' method.
defaultLiftLocal
:: (Monad m, LiftLocal n)
=> (forall x . n m x -> t m x)
-- ^ Monad constructor
-> (forall o x . t o x -> n o x)
-- ^ Monad deconstructor
-> m r
-> (forall a . Local r m a)
-> (forall a . Local r (t m) a)
defaultLiftLocal t unT a l f = t . liftLocal a l f . unT
instance LiftLocal (C.ContT r) where
liftLocal a l f = C.liftLocal a l f
instance LiftLocal (E.ExceptT e) where
liftLocal _ l f = E.mapExceptT (l f)
instance LiftLocal I.IdentityT where
liftLocal _ l f = I.mapIdentityT (l f)
instance LiftLocal L.ListT where
liftLocal _ l f = L.mapListT (l f)
instance LiftLocal M.MaybeT where
liftLocal _ l f = M.mapMaybeT (l f)
instance LiftLocal (R.ReaderT r) where
liftLocal _ l f = R.mapReaderT (l f)
instance Monoid w => LiftLocal (RWS.Lazy.RWST r w s) where
liftLocal _ l f = RWS.Lazy.mapRWST (l f)
instance Monoid w => LiftLocal (RWS.Strict.RWST r w s) where
liftLocal _ l f = RWS.Strict.mapRWST (l f)
instance LiftLocal (S.Lazy.StateT s) where
liftLocal _ l f = S.Lazy.mapStateT (l f)
instance LiftLocal (S.Strict.StateT s) where
liftLocal _ l f = S.Strict.mapStateT (l f)
instance Monoid w => LiftLocal (W.Lazy.WriterT w) where
liftLocal _ l f = W.Lazy.mapWriterT (l f)
instance Monoid w => LiftLocal (W.Strict.WriterT w) where
liftLocal _ l f = W.Strict.mapWriterT (l f)