STMonadTrans 0.3.2 → 0.3.3
raw patch · 2 files changed
+3/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Control/Monad/ST/Trans.hs +1/−0
- STMonadTrans.cabal +2/−2
Control/Monad/ST/Trans.hs view
@@ -78,6 +78,7 @@ case ret of STTRet new_st a -> unSTT (k a) new_st+ fail msg = lift (fail msg) instance MonadTrans (STT s) where lift m = STT $ \st ->
STMonadTrans.cabal view
@@ -1,5 +1,5 @@ name: STMonadTrans-version: 0.3.2+version: 0.3.3 cabal-version: >= 1.6 license: BSD3 license-file: LICENSE@@ -13,7 +13,7 @@ Warning! This monad transformer should not be used with monads that can contain multiple answers, like the list monad. The reason is that - the will be duplicated across the different answers and this cause+ the state token will be duplicated across the different answers and this causes Bad Things to happen (such as loss of referential transparency). Safe monads include the monads State, Reader, Writer, Maybe and combinations of their corresponding monad transformers.