these-0.6.0.0: An either-or-both data type, with corresponding hybrid error/writer monad transformer.

Safe HaskellSafe
LanguageHaskell98

Control.Monad.Chronicle

Contents

Synopsis

Type class for Chronicle-style monads

class Monad m => MonadChronicle c m | m -> c where Source

Methods

dictate :: c -> m () Source

dictate c is an action that records the output c.

Equivalent to tell for the Writer monad.

confess :: c -> m a Source

confess c is an action that ends with a final output c.

Equivalent to throwError for the Error monad.

memento :: m a -> m (Either c a) Source

memento m is an action that executes the action m, returning either its record if it ended with confess, or its final value otherwise, with any record added to the current record.

Similar to catchError in the Error monad, but with a notion of non-fatal errors (which are accumulated) vs. fatal errors (which are caught without accumulating).

absolve :: a -> m a -> m a Source

absolve x m is an action that executes the action m and discards any record it had. The default value x will be used if m ended via confess.

condemn :: m a -> m a Source

condemn m is an action that executes the action m and keeps its value only if it had no record. Otherwise, the value (if any) will be discarded and only the record kept.

This can be seen as converting non-fatal errors into fatal ones.

retcon :: (c -> c) -> m a -> m a Source

retcon f m is an action that executes the action m and applies the function f to its output, leaving the return value unchanged.

Equivalent to censor for the Writer monad.

chronicle :: These c a -> m a Source

chronicle m lifts a plain 'These c a' value into a MonadChronicle instance.

The ChronicleT monad transformer

type Chronicle c = ChronicleT c Identity Source

A chronicle monad parameterized by the output type c.

The return function produces a computation with no output, and >>= combines multiple outputs with mappend.

newtype ChronicleT c m a Source

The ChronicleT monad transformer.

The return function produces a computation with no output, and >>= combines multiple outputs with mappend.

Constructors

ChronicleT 

Fields

runChronicleT :: m (These c a)