[project @ 2002-10-03 13:41:35 by panne]
authorpanne <unknown>
Thu, 3 Oct 2002 13:41:35 +0000 (13:41 +0000)
committerpanne <unknown>
Thu, 3 Oct 2002 13:41:35 +0000 (13:41 +0000)
Warning police #8: Exporting Foo(..) exports Foo's field selector
functions, too, so let's nuke the latter from the export list.

Control/Monad/Cont.hs
Control/Monad/Error.hs
Control/Monad/Identity.hs
Control/Monad/List.hs
Control/Monad/RWS.hs
Control/Monad/Reader.hs
Control/Monad/State.hs
Control/Monad/Writer.hs

index 51cf2da..251dbd9 100644 (file)
 module Control.Monad.Cont (
        MonadCont(..),
        Cont(..),
-       runCont,
        mapCont,
        withCont,
        ContT(..),
-       runContT,
        mapContT,
        withContT,
        module Control.Monad,
index 91694ba..19445bf 100644 (file)
@@ -20,7 +20,6 @@ module Control.Monad.Error (
        Error(..),
        MonadError(..),
        ErrorT(..),
-       runErrorT,
        mapErrorT,
        module Control.Monad,
        module Control.Monad.Fix,
index 52c8459..5a6f5ad 100644 (file)
@@ -21,7 +21,6 @@
 
 module Control.Monad.Identity (
        Identity(..),
-       runIdentity,
        module Control.Monad,
        module Control.Monad.Fix,
    ) where
index 11aa3bf..275b600 100644 (file)
@@ -15,7 +15,6 @@
 
 module Control.Monad.List (
        ListT(..),
-       runListT,
        mapListT,
        module Control.Monad,
        module Control.Monad.Trans,
index 5175c7f..d3801cf 100644 (file)
 
 module Control.Monad.RWS (
        RWS(..),
-       runRWS,
        evalRWS,
        execRWS,
        mapRWS,
        withRWS,
        RWST(..),
-       runRWST,
        evalRWST,
        execRWST,
        mapRWST,
index f0e617a..a8c6427 100644 (file)
@@ -22,11 +22,9 @@ module Control.Monad.Reader (
        MonadReader(..),
        asks,
        Reader(..),
-       runReader,
        mapReader,
        withReader,
        ReaderT(..),
-       runReaderT,
        mapReaderT,
        withReaderT,
        module Control.Monad,
index 9f67f6d..cafdd72 100644 (file)
@@ -23,13 +23,11 @@ module Control.Monad.State (
        modify,
        gets,
        State(..),
-       runState,
        evalState,
        execState,
        mapState,
        withState,
        StateT(..),
-       runStateT,
        evalStateT,
        execStateT,
        mapStateT,
index 0ef1ab0..415ca7f 100644 (file)
@@ -23,11 +23,9 @@ module Control.Monad.Writer (
        listens,
        censor,
        Writer(..),
-       runWriter,
        execWriter,
        mapWriter,
        WriterT(..),
-       runWriterT,
        execWriterT,
        mapWriterT,
        module Control.Monad,