monads-tf-0.0.0.1: Monad classes, using type familiesSource codeContentsIndex
Control.Monad.Reader.Class
Portabilitynon-portable (type families)
Stabilityexperimental
Maintainerlibraries@haskell.org
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 Control.Monad.State.State monad.

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

Synopsis
class Monad m => MonadReader m where
type EnvType m
ask :: m (EnvType m)
local :: (EnvType m -> EnvType m) -> m a -> m a
asks :: MonadReader m => (EnvType m -> a) -> m a
Documentation
class Monad m => MonadReader m whereSource
See examples in Control.Monad.Reader. Note, the partially applied function type (->) r is a simple reader monad. See the instance declaration below.
Associated Types
type EnvType m Source
Methods
ask :: m (EnvType m)Source
Retrieves the monad environment.
localSource
::
=> EnvType m -> EnvType mReader to run in the modified environment.
-> m a
-> m a
Executes a computation in a modified environment.
show/hide Instances
asksSource
:: MonadReader m
=> EnvType m -> a
-> m a
Retrieves a function of the current environment.
Produced by Haddock version 2.6.0