X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Control%2FMonad%2FRWS.hs;h=d3801cf6fb06afd6fdc1c68f868e8e796c405ac1;hb=e500eb01d713b4a3080a669951ef23018f44ba3e;hp=26d624d0e4b23d454a828680b200d7c5d6606868;hpb=7f1f4e7a695c402ddd3a1dc2cc7114e649a78ebc;p=ghc-base.git diff --git a/Control/Monad/RWS.hs b/Control/Monad/RWS.hs index 26d624d..d3801cf 100644 --- a/Control/Monad/RWS.hs +++ b/Control/Monad/RWS.hs @@ -1,35 +1,30 @@ ----------------------------------------------------------------------------- --- +-- | -- Module : Control.Monad.RWS -- Copyright : (c) Andy Gill 2001, -- (c) Oregon Graduate Institute of Science and Technology, 2001 --- License : BSD-style (see the file libraries/core/LICENSE) +-- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : libraries@haskell.org -- Stability : experimental --- Portability : non-portable ( requires mulit-parameter type classes, --- requires functional dependencies ) --- --- $Id: RWS.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $ +-- Portability : non-portable ( mulit-param classes, functional dependencies ) -- -- Declaration of the MonadRWS class. -- -- Inspired by the paper --- \em{Functional Programming with Overloading and --- Higher-Order Polymorphism}, --- \A[HREF="http://www.cse.ogi.edu/~mpj"]{Mark P Jones}, --- Advanced School of Functional Programming, 1995.} +-- /Functional Programming with Overloading and +-- Higher-Order Polymorphism/, +-- Mark P Jones () +-- Advanced School of Functional Programming, 1995. ----------------------------------------------------------------------------- module Control.Monad.RWS ( RWS(..), - runRWS, evalRWS, execRWS, mapRWS, withRWS, RWST(..), - runRWST, evalRWST, execRWST, mapRWST,