mtl-2.2.1: Monad classes, using functional dependencies

Copyright(c) Andy Gill 2001
(c) Oregon Graduate Institute of Science and Technology 2001
LicenseBSD-style (see the file LICENSE)
Maintainerlibraries@haskell.org
Stabilityexperimental
Portabilitynon-portable (multi-param classes, functional dependencies)
Safe HaskellSafe
LanguageHaskell98

Control.Monad.RWS.Class

Description

Declaration of the MonadRWS class.

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

Documentation

class (Monoid w, MonadReader r m, MonadWriter w m, MonadState s m) => MonadRWS r w s m | m -> r, m -> w, m -> s #

Instances

MonadRWS r w s m => MonadRWS r w s (MaybeT m) # 
MonadRWS r w s m => MonadRWS r w s (IdentityT * m) # 
(Error e, MonadRWS r w s m) => MonadRWS r w s (ErrorT e m) # 
MonadRWS r w s m => MonadRWS r w s (ExceptT e m) # 
(Monoid w, Monad m) => MonadRWS r w s (RWST r w s m) # 
(Monoid w, Monad m) => MonadRWS r w s (RWST r w s m) #