packages feed

bitset-1.0: bitset.cabal

Name:                bitset
Version:             1.0
Synopsis:            A functional data structure for efficient membership testing.
Description:
        A /bit set/ maintains a record of members from a type that can be mapped
        into (non-negative) @Int@s.  Supports insertion, deletion, size, and
        membership testing, and is completely pure (functional).
Category:            Data Structures
License:             LGPL
License-file:        LICENSE
Author:              Denis Bueno
Maintainer:          Denis Bueno <dbueno@gmail.com>
Stability:           provisional
Cabal-Version:       >= 1.2.3
Build-Depends:       base, QuickCheck
Build-type:          Simple

Exposed-modules:     Data.BitSet
Build-depends:       base >= 4.0.0
Extensions:          ScopedTypeVariables, DeriveDataTypeable
Ghc-options:         -Wall -O2
Ghc-prof-options:    -prof -auto-all
Extra-source-files:  tests/Properties.hs