packages feed

EnumMap-0.0.2: EnumMap.cabal

name: EnumMap
version: 0.0.2
author: John Van Enk
maintainer: vanenkj@gmail.com
license: BSD3
license-file: LICENSE
category: Data Structures

synopsis: More general IntMap replacement.
description: A version of IntMap that uses the Enum typeclass instead of Int. This is
             very nearly a direct copy of the IntMap package by Daan Leijen and
             Andriy Palamarchuk. The only change is coercing the package to accept
             anything with the Enum class constraint instead of forcing Int's.

build-type: Simple
cabal-version: >= 1.2.0

library
    build-depends: base >= 4 && < 5,
                   containers >= 0.2.0.1 && < 0.3
    exposed-modules: Data.EnumMap
    hs-source-dirs: src/
    ghc-options: -O2 -Wall