name: HsJudy version: 0.2 Category: Data Synopsis: Judy bindings, and some nice APIs Description: Judy bindings (a C library that implements fast sparse dynamic arrays) for Haskell presenting APIs conforming as much as possible to the existent Haskell library interfaces, like Data.Map and Data.Array.MArray. This binding for the Judy library includes all its four types: mapping from words to bits (Judy1), from words to values (JudyL), from strings to values (JudyHS) and from array-of-bytes to values (JudyHS). license: BSD3 license-file: LICENSE author: Caio Marcelo de Oliveira Filho, John Meacham maintainer: Caio Marcelo de Oliveira Filho homepage: http://www.pugscode.org/ cabal-version: >= 1.2 tested-with: GHC==6.8.2 build-type: Simple data-files: README Library Build-Depends: base, containers, bytestring>=0.9.0.1 exposed-modules: Data.Array.Judy.BitSet Data.Array.Judy.Freeze Data.Array.Judy.Hash Data.Array.Judy.IntMap Data.Array.Judy.StrMap Data.Array.Judy.CollectionsM Data.Array.Judy.HashIO Data.Array.Judy.Refeable Data.Array.Judy.Stringable other-modules: Data.Array.Judy.Private Data.Array.Judy.MiniGC -- Tell Cabal to link to the C library, wheresoever it is. extra-libraries: Judy extensions: ForeignFunctionInterface, TypeSynonymInstances, MagicHash, MultiParamTypeClasses, FlexibleContexts, IncoherentInstances, UndecidableInstances, DeriveDataTypeable, FlexibleInstances, FunctionalDependencies ghc-options: -Wall -O2