lens-2.6: Lenses, Folds and Traversals

PortabilityMTPCs, FDs, Rank2
Stabilityexperimental
MaintainerEdward Kmett <ekmett@gmail.com>
Safe HaskellSafe-Infered

Control.Lens.Action

Contents

Description

 

Synopsis

Composable Actions

type Action m a c = forall f r. Effective m r f => (c -> f c) -> a -> f aSource

An Action is a Getter enriched with access to a Monad for side-effects.

Every Getter can be used as an Action

You can compose an Action with another Action using (.) from the Prelude.

act :: Monad m => (a -> m c) -> Action m a cSource

Construct an Action from a monadic side-effect

acts :: Action m (m a) aSource

A self-running Action, analogous to join.

acts = act id
>>> import Control.Lens
>>> (1,"hello")^!_2.acts.to succ
"ifmmp"

perform :: Monad m => Acting m c a c -> a -> m cSource

Perform an Action.

 perform = flip (^!)

liftAct :: (MonadTrans t, Monad m) => Acting m c a c -> Action (t m) a cSource

Apply a Monad transformer to an Action.

(^!) :: Monad m => a -> Acting m c a c -> m cSource

Perform an Action

>>> import Control.Lens
>>> ["hello","world"]^!folded.act putStrLn
hello
world

Folds with Effecs

type MonadicFold m a c = forall f r. (Effective m r f, Applicative f) => (c -> f c) -> a -> f aSource

A MonadicFold is a Fold enriched with access to a Monad for side-effects.

Every Fold can be used as a MonadicFold, that simply ignores the access to the Monad.

You can compose a MonadicFold with another MonadicFold using (.) from the Prelude.

Implementation Details

type Acting m r a c = (c -> Effect m r c) -> a -> Effect m r aSource

Used to evaluate an Action.