extensible-effects-1.11.1.0: An Alternative to Monad Transformers

Safe HaskellSafe
LanguageHaskell2010

Control.Eff.Example

Description

Example usage of Control.Eff

Synopsis

Documentation

writeAll :: (Typeable a, Member (Writer a) e) => [a] -> Eff e () Source #

Write the elements of a list of numbers, in order.

sumAll :: (Typeable a, Num a, Member (State a) e) => [a] -> Eff e () Source #

Add a list of numbers to the current state.

writeAndAdd :: (Member (Writer a) e, Member (State a) e, Num a, Typeable a) => [a] -> Eff e () Source #

Write a list of numbers and add them to the current state.

sumEff :: (Num a, Typeable a) => [a] -> a Source #

Sum a list of numbers.

lastEff :: Typeable a => [a] -> Maybe a Source #

Safely get the last element of a list. Nothing for empty lists; Just the last element otherwise.

lastAndSum :: (Typeable a, Num a) => [a] -> (Maybe a, a) Source #

Get the last element and sum of a list