Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mtl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Glasgow Haskell Compiler
Packages
mtl
Commits
d1a62538
Commit
d1a62538
authored
May 06, 2014
by
Edward Kmett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work around the new export style for transformers 0.4 so we get
`runFooT`.
parent
d6075c03
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
27 additions
and
15 deletions
+27
-15
CHANGELOG.markdown
CHANGELOG.markdown
+4
-0
Control/Monad/Cont.hs
Control/Monad/Cont.hs
+2
-1
Control/Monad/Error.hs
Control/Monad/Error.hs
+3
-2
Control/Monad/RWS/Lazy.hs
Control/Monad/RWS/Lazy.hs
+3
-2
Control/Monad/RWS/Strict.hs
Control/Monad/RWS/Strict.hs
+3
-2
Control/Monad/Reader.hs
Control/Monad/Reader.hs
+3
-2
Control/Monad/State/Lazy.hs
Control/Monad/State/Lazy.hs
+3
-2
Control/Monad/State/Strict.hs
Control/Monad/State/Strict.hs
+3
-2
Control/Monad/Writer/Lazy.hs
Control/Monad/Writer/Lazy.hs
+3
-2
No files found.
CHANGELOG.markdown
View file @
d1a62538
2.2.0.1
-------
*
Fixed a bug caused by the change in how
`transformers`
0.4 exports its data types. We will now export
`runFooT`
for each transformer again!
2.
2
---
*
`transformers`
0.4 support
...
...
Control/Monad/Cont.hs
View file @
d1a62538
...
...
@@ -58,7 +58,8 @@ module Control.Monad.Cont (
mapCont
,
withCont
,
-- * The ContT monad transformer
ContT
(
..
),
ContT
(
ContT
),
runContT
,
mapContT
,
withContT
,
module
Control
.
Monad
,
...
...
Control/Monad/Error.hs
View file @
d1a62538
...
...
@@ -37,7 +37,8 @@ module Control.Monad.Error (
MonadError
(
..
),
Error
(
..
),
-- * The ErrorT monad transformer
ErrorT
(
..
),
ErrorT
(
ErrorT
),
runErrorT
,
mapErrorT
,
module
Control
.
Monad
,
module
Control
.
Monad
.
Fix
,
...
...
@@ -51,7 +52,7 @@ module Control.Monad.Error (
import
Control.Monad.Error.Class
import
Control.Monad.Trans
import
Control.Monad.Trans.Error
(
ErrorT
(
..
)
,
mapErrorT
)
import
Control.Monad.Trans.Error
(
ErrorT
(
ErrorT
),
runErrorT
,
mapErrorT
)
import
Control.Monad
import
Control.Monad.Fix
...
...
Control/Monad/RWS/Lazy.hs
View file @
d1a62538
...
...
@@ -27,7 +27,8 @@ module Control.Monad.RWS.Lazy (
mapRWS
,
withRWS
,
-- * The RWST monad transformer
RWST
(
..
),
RWST
(
RWST
),
runRWST
,
evalRWST
,
execRWST
,
mapRWST
,
...
...
@@ -45,7 +46,7 @@ import Control.Monad.RWS.Class
import
Control.Monad.Trans
import
Control.Monad.Trans.RWS.Lazy
(
RWS
,
rws
,
runRWS
,
evalRWS
,
execRWS
,
mapRWS
,
withRWS
,
RWST
(
..
)
,
evalRWST
,
execRWST
,
mapRWST
,
withRWST
)
RWST
(
RWST
),
runRWST
,
evalRWST
,
execRWST
,
mapRWST
,
withRWST
)
import
Control.Monad
import
Control.Monad.Fix
...
...
Control/Monad/RWS/Strict.hs
View file @
d1a62538
...
...
@@ -27,7 +27,8 @@ module Control.Monad.RWS.Strict (
mapRWS
,
withRWS
,
-- * The RWST monad transformer
RWST
(
..
),
RWST
(
RWST
),
runRWST
,
evalRWST
,
execRWST
,
mapRWST
,
...
...
@@ -45,7 +46,7 @@ import Control.Monad.RWS.Class
import
Control.Monad.Trans
import
Control.Monad.Trans.RWS.Strict
(
RWS
,
rws
,
runRWS
,
evalRWS
,
execRWS
,
mapRWS
,
withRWS
,
RWST
(
..
)
,
evalRWST
,
execRWST
,
mapRWST
,
withRWST
)
RWST
(
RWST
),
runRWST
,
evalRWST
,
execRWST
,
mapRWST
,
withRWST
)
import
Control.Monad
import
Control.Monad.Fix
...
...
Control/Monad/Reader.hs
View file @
d1a62538
...
...
@@ -45,7 +45,8 @@ module Control.Monad.Reader (
mapReader
,
withReader
,
-- * The ReaderT monad transformer
ReaderT
(
..
),
ReaderT
(
ReaderT
),
runReaderT
,
mapReaderT
,
withReaderT
,
module
Control
.
Monad
,
...
...
@@ -65,7 +66,7 @@ import Control.Monad.Reader.Class
import
Control.Monad.Trans.Reader
(
Reader
,
runReader
,
mapReader
,
withReader
,
ReaderT
(
..
)
,
mapReaderT
,
withReaderT
)
ReaderT
(
ReaderT
),
runReaderT
,
mapReaderT
,
withReaderT
)
import
Control.Monad.Trans
import
Control.Monad
...
...
Control/Monad/State/Lazy.hs
View file @
d1a62538
...
...
@@ -32,7 +32,8 @@ module Control.Monad.State.Lazy (
mapState
,
withState
,
-- * The StateT monad transformer
StateT
(
..
),
StateT
(
StateT
),
runStateT
,
evalStateT
,
execStateT
,
mapStateT
,
...
...
@@ -49,7 +50,7 @@ import Control.Monad.State.Class
import
Control.Monad.Trans
import
Control.Monad.Trans.State.Lazy
(
State
,
runState
,
evalState
,
execState
,
mapState
,
withState
,
StateT
(
..
)
,
evalStateT
,
execStateT
,
mapStateT
,
withStateT
)
StateT
(
StateT
),
runStateT
,
evalStateT
,
execStateT
,
mapStateT
,
withStateT
)
import
Control.Monad
import
Control.Monad.Fix
...
...
Control/Monad/State/Strict.hs
View file @
d1a62538
...
...
@@ -32,7 +32,8 @@ module Control.Monad.State.Strict (
mapState
,
withState
,
-- * The StateT monad transformer
StateT
(
..
),
StateT
(
StateT
),
runStateT
,
evalStateT
,
execStateT
,
mapStateT
,
...
...
@@ -49,7 +50,7 @@ import Control.Monad.State.Class
import
Control.Monad.Trans
import
Control.Monad.Trans.State.Strict
(
State
,
runState
,
evalState
,
execState
,
mapState
,
withState
,
StateT
(
..
)
,
evalStateT
,
execStateT
,
mapStateT
,
withStateT
)
StateT
(
StateT
),
runStateT
,
evalStateT
,
execStateT
,
mapStateT
,
withStateT
)
import
Control.Monad
import
Control.Monad.Fix
...
...
Control/Monad/Writer/Lazy.hs
View file @
d1a62538
...
...
@@ -28,7 +28,8 @@ module Control.Monad.Writer.Lazy (
execWriter
,
mapWriter
,
-- * The WriterT monad transformer
WriterT
(
..
),
WriterT
(
WriterT
),
runWriterT
,
execWriterT
,
mapWriterT
,
module
Control
.
Monad
,
...
...
@@ -42,7 +43,7 @@ import Control.Monad.Writer.Class
import
Control.Monad.Trans
import
Control.Monad.Trans.Writer.Lazy
(
Writer
,
runWriter
,
execWriter
,
mapWriter
,
WriterT
(
..
)
,
execWriterT
,
mapWriterT
)
WriterT
(
WriterT
),
runWriterT
,
execWriterT
,
mapWriterT
)
import
Control.Monad
import
Control.Monad.Fix
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment