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.8.1 – 2025-08-26
Remove transformers as direct dependency (fixing -Werror=unused-packages).
Tested with GHC 8.0.2 - 9.14 alpha1.
0.4.8 – 2024-01-04
Added Alternative instance for STT, by William Rusnack
(PR #33).