Popularity
1.3
Declining
Activity
0.0
Stable
2
2
0

Monthly Downloads: 18
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Control    
Latest version: v0.3.0.0

disposable alternatives and similar packages

Based on the "Control" category.
Alternatively, view disposable alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of disposable or a related project?

Add another 'Control' Package

README

Hackage Build Status

Disposable allows storing different resource releasing actions togther in a container. This library is useful for queueing up GHCJS.Foreign.Callback together to be released after a new rendering frame.

Changelog

  • 1.0.0.0
    • Breaking changes:
    • Simplified by removing SomeDisposable GADT; Disposable is now a newtype, and the typeclass is called Dispose.
    • The intention is no longer to create Disposable instances for everything.
    • Disposable is only used to provide a safe wrapper around IO to ensure that it performs no other side effects.