these-0.6.1.0: An either-or-both data type & a generalized 'zip with padding' typeclass

Safe HaskellSafe
LanguageHaskell98

Control.Monad.Chronicle

Contents

Description

The ChronicleT monad, a hybrid error/writer monad that allows both accumulating outputs and aborting computation with a final output.

Synopsis

Type class for Chronicle-style monads

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

Minimal complete definition

dictate, confess, memento, absolve, condemn, retcon, chronicle

Methods

dictate :: c -> m () Source

dictate c is an action that records the output c.

Equivalent to tell for the Writer monad.

disclose :: Default a => c -> m a Source

disclose c is an action that records the output c and returns a Default value.

This is a convenience function for reporting non-fatal errors in one branch a case, or similar scenarios when there is no meaningful result but a placeholder of sorts is needed in order to continue.

confess :: c -> m a Source

confess c is an action that ends with a final record 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)
 

Instances

(Monoid c, MonadRWS r w s m) => MonadRWS r w s (ChronicleT c m) Source 
(Monoid c, MonadError e m) => MonadError e (ChronicleT c m) Source 
(Monoid c, MonadReader r m) => MonadReader r (ChronicleT c m) Source 
(Monoid c, MonadWriter w m) => MonadWriter w (ChronicleT c m) Source 
(Monoid c, MonadState s m) => MonadState s (ChronicleT c m) Source 
(Monoid c, Monad m) => MonadChronicle c (ChronicleT c m) Source 
Monoid c => MonadTrans (ChronicleT c) Source 
(Monoid c, Monad m) => Monad (ChronicleT c m) Source 
Functor m => Functor (ChronicleT c m) Source 
(Monoid c, Applicative m) => Applicative (ChronicleT c m) Source 
(Monoid c, Applicative m, Monad m) => Alternative (ChronicleT c m) Source 
(Monoid c, Monad m) => MonadPlus (ChronicleT c m) Source 
(Monoid c, MonadIO m) => MonadIO (ChronicleT c m) Source 
(Monoid c, Apply m) => Apply (ChronicleT c m) Source 
(Monoid c, Apply m, Monad m) => Bind (ChronicleT c m) Source