1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Name: multimap
Version: 1.2.1
Synopsis: A multimap.
Description: This is a simple implementation of a multimap, based on "Data.Map".
.
[@v1.1@]
@!@ had its arguments flipped. Fixed.
Also added @fromMap@.
.
[@v1.2@]
Added "Data.SetMap", renamed @Multimap@ to "Data.MultiMap".
Fixed the type of @delete@. Derive instances for @Data@
and @Typeable@.
.
[@v1.2.1@]
Fixed typos in the documentation.
License: MIT
License-File: LICENSE
Author: Julian Fleischer <julian.fleischer@fu-berlin.de>
Maintainer: Julian Fleischer <julian.fleischer@fu-berlin.de>
Build-Type: Simple
Cabal-Version: >= 1.6
Category: Data Structures
Stability: provisional
Homepage: http://hub.darcs.net/scravy/multimap
Source-Repository head
type: darcs
location: hub.darcs.net:multimap
Library
Exposed-Modules: Data.MultiMap
, Data.SetMap
Build-Depends: base >= 3 && < 5, containers
Hs-Source-Dirs: src
|