packages feed

bitset-1.1: bitset.cabal

Name:                bitset
Version:             1.1
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:             BSD3
License-file:        LICENSE
Data-files:          CHANGES
Author:              Denis Bueno
Maintainer:          Denis Bueno <dbueno@gmail.com>
Stability:           provisional
Cabal-Version:       >= 1.2.3
Build-type:          Simple
Extra-source-files:  tests/Properties.hs

Library
  Exposed-modules:     Data.BitSet
  Build-depends:       base >= 4.0.0 && < 5, QuickCheck >= 2 && < 3
  Extensions:          ScopedTypeVariables, DeriveDataTypeable
  Ghc-options:         -Wall -O2
  Ghc-prof-options:    -prof -auto-all