STMonadTrans

A monad transformer version of the ST monad

Version on this page:0.4.3
LTS Haskell 22.13:0.4.8
Stackage Nightly 2024-03-14:0.4.8
Latest on Hackage:0.4.8

See all snapshots STMonadTrans appears in

BSD-3-Clause licensed by Josef Svenningsson
Maintained by [email protected]
This version can be pinned in stack with:STMonadTrans-0.4.3@sha256:21120985abb8789695512a17a60164a9a3ca804c5091b18df3c937c449fdba0d,1412

Module documentation for 0.4.3

Depends on 3 packages(full list with versions):
Used by 1 package in lts-8.5(full list with versions):

A monad transformer version of the ST monad Warning! This monad transformer should not be used with monads that can contain multiple answers, like the list monad. The reason is that 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.

Changes

0.4.3

  • Fix compilation for GHC 7.6.3. Thanks to Andrés Sicard-Ramírez.
  • Export unsafe array operations

0.4.2

  • Deprecate runST and unsafeSTToIO in favor of runSTT and unsafeSTTToIO.
  • Added INLINE pragmas

0.4.1

  • Add Applicative constraints to be compatible with GHC 7.8.4
  • Add changelog

0.4

  • New library structure, based on liftST. It reuses more code and types from the standard ST monad. Thanks to @wyager for liftST.
  • Instances for MArray