| Safe Haskell | Safe |
|---|---|
| Language | Haskell98 |
Control.Effects
Synopsis
- with :: Monad m => Handler e r m a -> (Effect e m -> Layer e m a) -> m r
- run :: Base Pure a -> a
- data Handler e r m a = Handler {}
- operation :: AutoLift e m n => Effect e m -> ((a -> m e) -> m e) -> n a
- runBase :: Base m a -> m a
- base :: AutoLiftBase m n => m a -> n a
- newtype Layer e m a = Layer {
- runLayer :: (a -> m e) -> m e
- newtype Base m a = Base (m a)
- newtype Pure a = Pure a
- data Effect e (m :: * -> *)
- class (Applicative m, Applicative n, Monad m, Monad n) => AutoLift e m n
- class (Applicative m, Applicative n, Monad m, Monad n) => AutoLiftBase m n
Running effects
Here's an example how to use the state effect from State:
example :: Int
example = run $ do
with (ref 10) $ \u -> do
val <- get u
put u (val + 5)
get uwith :: Monad m => Handler e r m a -> (Effect e m -> Layer e m a) -> m r Source #
with takes a handler and creates a new effect instance.
The Effect is passed on to a function which can use it to do operations with it.
Defining effects
Here's and example how to define the state effect from Writer:
writer :: (Monad m, Monoid w) => Handler (w, a) (w, a) m a
writer = Handler
{ ret = \a -> return (mempty, a)
, fin = return
}
tell :: (AutoLift (w, r) m n, Monoid w) => Effect (w, r) m -> w -> n ()
tell p v = operation p $ \k -> do
(w, r) <- k ()
return (mappend v w, r)A Handler e r m a is a handler of effects with type e.
The ret field provides a function to lift pure values into the effect.
The fin field provides a function to extract a final value of type r from the effect.
The parameter m should normally be left polymorphic, it's the monad that handles the other effects.
operation :: AutoLift e m n => Effect e m -> ((a -> m e) -> m e) -> n a Source #
operation takes an effect identifier generated by with and a function which takes a continuation as parameter.
The result is auto-lifted so it can be used inside any other effect.
Base monad
The effects are layered on top of a base monad. Here's an example how to use IO as a base monad:
exampleIO :: IO ()
exampleIO = runBase $ do
with (ref 5) $ \x -> do
val <- get x
base $ print valbase :: AutoLiftBase m n => m a -> n a Source #
base takes a computation in the base monad and auto-lifts it so it can be used inside any effect.
Effects machinery
Effects are layered in a stack on top of a base monad. Just like with monad transformers, operations lower in the stack
need to be lifted to be able to be used together with operations higher in the stack. But as there are only two monads
in play, Layer and Base, and because each operation is identified with exactly one layer using the Effect type,
lifting can be done automatically.
The following types and classes show up in the type signatures. The compiler should be able to infer them for you.
Layer e m is a monad that adds an effect e to the underlying monad m.
(It is the continuation monad transformer with a friendlier name.)
Instances
| (Applicative m, Monad m, AutoLiftInternal (Layer e m) (Layer d n) (Layer e m) (Layer d n)) => AutoLift e m (Layer d n) Source # | |
Defined in Control.Effects Methods operation' :: Effect e m -> ((a -> m e) -> m e) -> Layer d n a | |
| (Applicative m, Monad m, AutoLiftInternal (Base m) (Layer e n) (Base m) (Layer e n)) => AutoLiftBase m (Layer e n) Source # | |
Defined in Control.Effects | |
| Monad (Layer e m) Source # | |
| Functor (Layer e m) Source # | |
| Applicative (Layer e m) Source # | |
| (Monoid e, Applicative m) => Alternative (Layer e m) Source # | |
| (Monoid e, Applicative m) => MonadPlus (Layer e m) Source # | |
Base m is a newtype wrapper around a monadic computation.
Constructors
| Base (m a) |
Instances
| (Applicative m, Applicative n, Monad m, Monad n, AutoLiftInternal (Layer e m) (Base n) (Layer e m) (Base n)) => AutoLift e m (Base n) Source # | |
Defined in Control.Effects Methods operation' :: Effect e m -> ((a -> m e) -> m e) -> Base n a | |
| (Applicative m, Applicative n, Monad m, Monad n, AutoLiftInternal (Base m) (Base n) (Base m) (Base n)) => AutoLiftBase m (Base n) Source # | |
Defined in Control.Effects | |
| Monad m => Monad (Base m) Source # | |
| Functor m => Functor (Base m) Source # | |
| Applicative m => Applicative (Base m) Source # | |
Pure is the identity monad and is used when no other base monad is needed.
Constructors
| Pure a |
data Effect e (m :: * -> *) Source #
Effect e m is a proxy for the type checker to be able to work with multiple effects at the same time.
class (Applicative m, Applicative n, Monad m, Monad n) => AutoLift e m n Source #
Minimal complete definition
operation'
Instances
| (Applicative m, Applicative n, Monad m, Monad n, AutoLiftInternal (Layer e m) (Base n) (Layer e m) (Base n)) => AutoLift e m (Base n) Source # | |
Defined in Control.Effects Methods operation' :: Effect e m -> ((a -> m e) -> m e) -> Base n a | |
| (Applicative m, Monad m, AutoLiftInternal (Layer e m) (Layer d n) (Layer e m) (Layer d n)) => AutoLift e m (Layer d n) Source # | |
Defined in Control.Effects Methods operation' :: Effect e m -> ((a -> m e) -> m e) -> Layer d n a | |
class (Applicative m, Applicative n, Monad m, Monad n) => AutoLiftBase m n Source #
Minimal complete definition
base'
Instances
| (Applicative m, Applicative n, Monad m, Monad n, AutoLiftInternal (Base m) (Base n) (Base m) (Base n)) => AutoLiftBase m (Base n) Source # | |
Defined in Control.Effects | |
| (Applicative m, Monad m, AutoLiftInternal (Base m) (Layer e n) (Base m) (Layer e n)) => AutoLiftBase m (Layer e n) Source # | |
Defined in Control.Effects | |