managed

A monad for managed values

Version on this page:1.0.9@rev:1
LTS Haskell 22.14:1.0.10
Stackage Nightly 2024-03-28:1.0.10
Latest on Hackage:1.0.10

See all snapshots managed appears in

BSD-3-Clause licensed by Gabriel Gonzalez
Maintained by [email protected]
This version can be pinned in stack with:managed-1.0.9@sha256:78cab598c86c7212d1e6647d34b9a6dc038aa5f0c9aa1827a9c1d2b195b6e7ea,1734

Module documentation for 1.0.9

Depends on 2 packages(full list with versions):
Used by 1 package in nightly-2022-01-25(full list with versions):

In Haskell you very often acquire values using the with... idiom using functions of type (a -> IO r) -> IO r. This idiom forms a Monad, which is a special case of the ContT monad (from transformers) or the Codensity monad (from kan-extensions). The main purpose behind this package is to provide a restricted form of these monads specialized to this unusually common case.

The reason this package defines a specialized version of these types is to:

  • be more beginner-friendly,

  • simplify inferred types and error messages, and:

  • provide some additional type class instances that would otherwise be orphan instances