mtl-2.2.2: Monad classes, using functional dependencies
Copyright (c) Andy Gill 2001
(c) Oregon Graduate Institute of Science and Technology 2001
License BSD-style (see the file LICENSE)
Maintainer libraries@haskell.org
Stability experimental
Portability non-portable (multi-param classes, functional dependencies)
Safe Haskell Safe
Language Haskell2010

Control.Monad.Writer.Class

Description

The MonadWriter class.

Inspired by the paper Functional Programming with Overloading and Higher-Order Polymorphism , Mark P Jones ( http://web.cecs.pdx.edu/~mpj/pubs/springschool.html ) Advanced School of Functional Programming, 1995.

Synopsis

Documentation

class ( Monoid w, Monad m) => MonadWriter w m | m -> w where Source #

Minimal complete definition

( writer | tell ), listen , pass

Methods

writer :: (a, w) -> m a Source #

writer (a,w) embeds a simple writer action.

tell :: w -> m () Source #

tell w is an action that produces the output w .

listen :: m a -> m (a, w) Source #

listen m is an action that executes the action m and adds its output to the value of the computation.

pass :: m (a, w -> w) -> m a Source #

pass m is an action that executes the action m , which returns a value and a function, and returns the value, applying the function to the output.

Instances

Instances details
MonadWriter w m => MonadWriter w ( MaybeT m) Source #
Instance details

Defined in Control.Monad.Writer.Class

Monoid w => MonadWriter w ( (,) w) Source #

NOTE : This instance is only defined for base >= 4.9.0 .

Since: 2.2.2

Instance details

Defined in Control.Monad.Writer.Class

Methods

writer :: (a, w) -> (w, a) Source #

tell :: w -> (w, ()) Source #

listen :: (w, a) -> (w, (a, w)) Source #

pass :: (w, (a, w -> w)) -> (w, a) Source #

MonadWriter w m => MonadWriter w ( StateT s m) Source #
Instance details

Defined in Control.Monad.Writer.Class

MonadWriter w m => MonadWriter w ( StateT s m) Source #
Instance details

Defined in Control.Monad.Writer.Class

MonadWriter w m => MonadWriter w ( ReaderT r m) Source #
Instance details

Defined in Control.Monad.Writer.Class

MonadWriter w m => MonadWriter w ( IdentityT m) Source #
Instance details

Defined in Control.Monad.Writer.Class

MonadWriter w m => MonadWriter w ( ExceptT e m) Source #

Since: 2.2

Instance details

Defined in Control.Monad.Writer.Class

( Error e, MonadWriter w m) => MonadWriter w ( ErrorT e m) Source #
Instance details

Defined in Control.Monad.Writer.Class

( Monoid w, Monad m) => MonadWriter w ( WriterT w m) Source #
Instance details

Defined in Control.Monad.Writer.Class

( Monoid w, Monad m) => MonadWriter w ( WriterT w m) Source #
Instance details

Defined in Control.Monad.Writer.Class

( Monoid w, Monad m) => MonadWriter w ( RWST r w s m) Source #
Instance details

Defined in Control.Monad.Writer.Class

Methods

writer :: (a, w) -> RWST r w s m a Source #

tell :: w -> RWST r w s m () Source #

listen :: RWST r w s m a -> RWST r w s m (a, w) Source #

pass :: RWST r w s m (a, w -> w) -> RWST r w s m a Source #

( Monoid w, Monad m) => MonadWriter w ( RWST r w s m) Source #
Instance details

Defined in Control.Monad.Writer.Class

Methods

writer :: (a, w) -> RWST r w s m a Source #

tell :: w -> RWST r w s m () Source #

listen :: RWST r w s m a -> RWST r w s m (a, w) Source #

pass :: RWST r w s m (a, w -> w) -> RWST r w s m a Source #

listens :: MonadWriter w m => (w -> b) -> m a -> m (a, b) Source #

listens f m is an action that executes the action m and adds the result of applying f to the output to the value of the computation.

censor :: MonadWriter w m => (w -> w) -> m a -> m a Source #

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