name: weak-bag version: 0.1.0.0 synopsis: Mutable bag backed by weak pointers to each item description: This module defines the 'WeakBag' type, which represents a mutable collection of items that does not cause the items to be retained in memory. It is useful for situations where a value needs to be inspected or modified if it is still alive, but can be ignored if it is dead. homepage: https://github.com/chessai/weak-bag license: BSD3 license-file: LICENSE author: Ryan Trinkle maintainer: chessai1996@gmail.com copyright: 2018 (c) Ryan Trinkle category: Data build-type: Simple extra-source-files: CHANGELOG.md cabal-version: >=1.10 library exposed-modules: Data.WeakBag build-depends: base >=4.7 && <4.13, containers >= 0.5.0 && < 0.7.0 hs-source-dirs: src default-language: Haskell2010