mtl-tf-0.2.1.0: Monad Transformer Library with Type Families

Copyright(c) Andy Gill 2001
(c) Oregon Graduate Institute of Science and Technology 2001
(c) Jeff Newbern 2003-2007
(c) Andriy Palamarchuk 2007
LicenseBSD-style (see the file libraries/base/LICENSE)
Maintainerlibraries@haskell.org
Stabilityexperimental
Portabilitynon-portable (multi-param classes, functional dependencies)
Safe HaskellSafe
LanguageHaskell2010

Control.Monad.Reader.Class

Description

Computation type:
Computations which read values from a shared environment.
Binding strategy:
Monad values are functions from the environment to a value. The bound function is applied to the bound value, and both have access to the shared environment.
Useful for:
Maintaining variable bindings, or other shared environment.
Zero and plus:
None.
Example type:
Reader [(String,Value)] a

The Reader monad (also called the Environment monad). Represents a computation, which can read values from a shared environment, pass values from function to function, and execute sub-computations in a modified environment. Using Reader monad for such computations is often clearer and easier than using the State monad.

Inspired by the paper /Functional Programming with Overloading and Higher-Order Polymorphism/, Mark P Jones (http://www.cse.ogi.edu/~mpj/) Advanced School of Functional Programming, 1995.

Synopsis

Documentation

class Monad m => MonadReader m where Source #

See examples in Control.Monad.Reader. Note, the partially applied function type (->) r is a simple reader monad. See the instance declaration below.

Minimal complete definition

ask, local

Associated Types

type EnvType m Source #

Methods

ask :: m (EnvType m) Source #

Retrieves the monad environment.

local :: (EnvType m -> EnvType m) -> m a -> m a Source #

Executes a computation in a modified environment. Parameters:

  • The function to modify the environment.
  • Reader to run.
  • The resulting Reader.

Instances

(Monoid w, MonadReader m) => MonadReader (WriterT w m) Source # 

Associated Types

type EnvType (WriterT w m :: * -> *) :: * Source #

Methods

ask :: WriterT w m (EnvType (WriterT w m)) Source #

local :: (EnvType (WriterT w m) -> EnvType (WriterT w m)) -> WriterT w m a -> WriterT w m a Source #

(Monoid w, MonadReader m) => MonadReader (WriterT w m) Source # 

Associated Types

type EnvType (WriterT w m :: * -> *) :: * Source #

Methods

ask :: WriterT w m (EnvType (WriterT w m)) Source #

local :: (EnvType (WriterT w m) -> EnvType (WriterT w m)) -> WriterT w m a -> WriterT w m a Source #

MonadReader m => MonadReader (StateT s m) Source # 

Associated Types

type EnvType (StateT s m :: * -> *) :: * Source #

Methods

ask :: StateT s m (EnvType (StateT s m)) Source #

local :: (EnvType (StateT s m) -> EnvType (StateT s m)) -> StateT s m a -> StateT s m a Source #

MonadReader m => MonadReader (StateT s m) Source # 

Associated Types

type EnvType (StateT s m :: * -> *) :: * Source #

Methods

ask :: StateT s m (EnvType (StateT s m)) Source #

local :: (EnvType (StateT s m) -> EnvType (StateT s m)) -> StateT s m a -> StateT s m a Source #

MonadReader m => MonadReader (ExceptT e m) Source # 

Associated Types

type EnvType (ExceptT e m :: * -> *) :: * Source #

Methods

ask :: ExceptT e m (EnvType (ExceptT e m)) Source #

local :: (EnvType (ExceptT e m) -> EnvType (ExceptT e m)) -> ExceptT e m a -> ExceptT e m a Source #

MonadReader ((->) LiftedRep LiftedRep r) Source # 

Associated Types

type EnvType ((LiftedRep -> LiftedRep) r :: * -> *) :: * Source #

Monad m => MonadReader (ReaderT * r m) Source # 

Associated Types

type EnvType (ReaderT * r m :: * -> *) :: * Source #

Methods

ask :: ReaderT * r m (EnvType (ReaderT * r m)) Source #

local :: (EnvType (ReaderT * r m) -> EnvType (ReaderT * r m)) -> ReaderT * r m a -> ReaderT * r m a Source #

MonadReader m => MonadReader (ContT * r m) Source # 

Associated Types

type EnvType (ContT * r m :: * -> *) :: * Source #

Methods

ask :: ContT * r m (EnvType (ContT * r m)) Source #

local :: (EnvType (ContT * r m) -> EnvType (ContT * r m)) -> ContT * r m a -> ContT * r m a Source #

(Monoid w, Monad m) => MonadReader (RWST r w s m) Source # 

Associated Types

type EnvType (RWST r w s m :: * -> *) :: * Source #

Methods

ask :: RWST r w s m (EnvType (RWST r w s m)) Source #

local :: (EnvType (RWST r w s m) -> EnvType (RWST r w s m)) -> RWST r w s m a -> RWST r w s m a Source #

(Monoid w, Monad m) => MonadReader (RWST r w s m) Source # 

Associated Types

type EnvType (RWST r w s m :: * -> *) :: * Source #

Methods

ask :: RWST r w s m (EnvType (RWST r w s m)) Source #

local :: (EnvType (RWST r w s m) -> EnvType (RWST r w s m)) -> RWST r w s m a -> RWST r w s m a Source #

asks :: MonadReader m => (EnvType m -> a) -> m a Source #

Retrieves a function of the current environment. Parameters:

  • The selector function to apply to the environment.

See an example in Control.Monad.Reader.