extensible-effects-1.1.0: An Alternative to Monad Transformers

Safe HaskellNone

Control.Eff.Coroutine

Description

Coroutines implemented with extensible effects

Synopsis

Documentation

data Yield a v Source

The yield request: reporting a value of type e and suspending the coroutine. For readability, a coroutine accepts a unit to produce its value.

Instances

yield :: (Typeable a, Member (Yield a) r) => a -> Eff r ()Source

Yield a value of type a and suspend the coroutine.

runC :: Typeable a => Eff (Yield a :> r) w -> Eff r (Y r a)Source

Launch a thread and report its status.

data Y r a Source

Status of a thread: done or reporting the value of the type a (For simplicity, a co-routine reports a value but accepts unit)

Constructors

Done 
Y a (() -> Eff r (Y r a))