managed

A monad for managed values

Version on this page:1.0.1@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.1@sha256:0baecb7e8c20aadcb65399e72b2db383cca207b7a3fafd22c637cff387e022ba,1433

Module documentation for 1.0.1

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