managed

A monad for managed values

Version on this page:1.0.5
LTS Haskell 22.13:1.0.10
Stackage Nightly 2024-03-14: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.5@sha256:a550101d0050874722f0e38c43cf191c42859dbc0ed0f1ac65c577ecfacdcaa3,1442

Module documentation for 1.0.5

Depends on 2 packages(full list with versions):
Used by 1 package in nightly-2017-10-28(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