transformers-compat-0.4.0.2: A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms.

Copyright(c) Ross Paterson 2010
LicenseBSD-style (see the file LICENSE)
Maintainerross@soi.city.ac.uk
Stabilityexperimental
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell98

Control.Applicative.Lift

Contents

Description

Adding a new kind of pure computation to an applicative functor.

NB: This module is only included in lens for backwards compatibility with transformers versions before 3.0.

Synopsis

Documentation

data Lift f a Source

Applicative functor formed by adding pure computations to a given applicative functor.

Constructors

Pure a 
Other (f a) 

Instances

Alternative f => Alternative (Lift f)

A combination is Pure only either part is.

Functor f => Functor (Lift f) 
Applicative f => Applicative (Lift f)

A combination is Pure only if both parts are.

Foldable f => Foldable (Lift f) 
Traversable f => Traversable (Lift f) 
Show1 f => Show1 (Lift f) 
Read1 f => Read1 (Lift f) 
Ord1 f => Ord1 (Lift f) 
Eq1 f => Eq1 (Lift f) 
(Eq1 f, Eq a) => Eq (Lift f a) 
(Ord1 f, Ord a) => Ord (Lift f a) 
(Read1 f, Read a) => Read (Lift f a) 
(Show1 f, Show a) => Show (Lift f a) 

unLift :: Applicative f => Lift f a -> f a Source

Projection to the other functor.

Collecting errors

type Errors e = Lift (Constant e) Source

An applicative functor that collects a monoid (e.g. lists) of errors. A sequence of computations fails if any of its components do, but unlike monads made with ErrorT from Control.Monad.Trans.Error, these computations continue after an error, collecting all the errors.

failure :: Monoid e => e -> Errors e a Source

Report an error.