X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Control%2FMonad%2FRWS.hs;h=d3801cf6fb06afd6fdc1c68f868e8e796c405ac1;hb=e500eb01d713b4a3080a669951ef23018f44ba3e;hp=a494ef0e0d0ffd0cb23901678b3465b37aff43d4;hpb=746ef6a7fd71bb1e9ebe3cd107c5f9f79f3b7a68;p=ghc-base.git diff --git a/Control/Monad/RWS.hs b/Control/Monad/RWS.hs index a494ef0..d3801cf 100644 --- a/Control/Monad/RWS.hs +++ b/Control/Monad/RWS.hs @@ -3,31 +3,28 @@ -- 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 ) +-- 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,