comonad-4.2.6: Comonads

Copyright(C) 2008-2013 Edward Kmett
LicenseBSD-style (see the file LICENSE)
MaintainerEdward Kmett <ekmett@gmail.com>
Stabilityprovisional
Portabilityportable
Safe HaskellSafe
LanguageHaskell2010

Control.Comonad.Trans.Env

Contents

Description

The environment comonad holds a value along with some retrievable context.

This module specifies the environment comonad transformer (aka coreader), which is left adjoint to the reader comonad.

The following sets up an experiment that retains its initial value in the background:

>>> let initial = env 0 0

Extract simply retrieves the value:

>>> extract initial
0

Play around with the value, in our case producing a negative value:

>>> let experiment = fmap (+ 10) initial
>>> extract experiment
10

Oh noes, something went wrong, 10 isn't very negative! Better restore the initial value using the default:

>>> let initialRestored = experiment =>> ask
>>> extract initialRestored
0

Synopsis

The strict environment comonad

type Env e = EnvT e Identity Source

env :: e -> a -> Env e a Source

Create an Env using an environment and a value

runEnv :: Env e a -> (e, a) Source

The strict environment comonad transformer

data EnvT e w a Source

Constructors

EnvT e (w a) 

Instances

Comonad w => ComonadEnv e (EnvT e w) 
ComonadStore s w => ComonadStore s (EnvT e w) 
ComonadTraced m w => ComonadTraced m (EnvT e w) 
ComonadTrans (EnvT e) 
ComonadHoist (EnvT e) 
Functor w => Functor (EnvT e w) 
Foldable w => Foldable (EnvT e w) 
Traversable w => Traversable (EnvT e w) 
(Semigroup e, ComonadApply w) => ComonadApply (EnvT e w) 
Comonad w => Comonad (EnvT e w) 
Typeable (* -> (* -> *) -> * -> *) EnvT 
(Data e, Typeable (* -> *) w, Data (w a), Data a) => Data (EnvT e w a) 

runEnvT :: EnvT e w a -> (e, w a) Source

lowerEnvT :: EnvT e w a -> w a Source

Gets rid of the environment. This differs from extract in that it will not continue extracting the value from the contained comonad.

Combinators

ask :: EnvT e w a -> e Source

Retrieves the environment.

asks :: (e -> f) -> EnvT e w a -> f Source

Like ask, but modifies the resulting value with a function.

asks = f . ask

local :: (e -> e') -> EnvT e w a -> EnvT e' w a Source

Modifies the environment using the specified function.