multimap 1.2 → 1.2.1
raw patch · 3 files changed
+22/−4 lines, 3 files
Files
- multimap.cabal +5/−2
- src/Data/MultiMap.hs +9/−1
- src/Data/SetMap.hs +8/−1
multimap.cabal view
@@ -1,5 +1,5 @@ Name: multimap-Version: 1.2+Version: 1.2.1 Synopsis: A multimap. Description: This is a simple implementation of a multimap, based on "Data.Map". .@@ -7,10 +7,13 @@ @!@ had its arguments flipped. Fixed. Also added @fromMap@. .- [@v1.2]+ [@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
src/Data/MultiMap.hs view
@@ -6,7 +6,15 @@ -fno-warn-name-shadowing #-} --- | A very simple MultiMap, based on 'Data.Map.Map' from the containers package.+-- |+-- Module : Data.MultiMap+-- Copyright : (c) Julian Fleischer 2013+-- License : MIT (See LICENSE file in cabal package)+--+-- Maintainer : julian.fleischer@fu-berlin.de+-- Portability : non-portable (DeriveDataTypeable)+-- +-- A very simple MultiMap, based on 'Data.Map.Map' from the containers package. module Data.MultiMap ( -- * MultiMap type
src/Data/SetMap.hs view
@@ -6,7 +6,14 @@ -fno-warn-name-shadowing #-} --- | A SetMap allows the association of multiple values with a single key,+-- Module : Data.SetMap+-- Copyright : (c) Julian Fleischer 2013+-- License : MIT (See LICENSE file in cabal package)+--+-- Maintainer : julian.fleischer@fu-berlin.de+-- Portability : non-portable (DeriveDataTypeable)+--+-- A SetMap allows the association of multiple values with a single key, -- but there are no duplicates per key. module Data.SetMap (