Skip to content

Commit

Permalink
[project @ 2005-01-13 10:37:35 by simonmar]
Browse files Browse the repository at this point in the history
Add Data.Map, Data.Set, Data.IntMap and Data.IntSet from Daan Leijen's
DData library, with some modifications by JP Bernardy and others on
the libraries@haskell.org list.  Minor changes by me to remove the
last references to DData, and add a DEPRECATED copy of the old
Data.Set interface to the new Data.Set.

Data.FiniteMap is now DEPRECATED.
  • Loading branch information
simonmar committed Jan 13, 2005
1 parent 3116880 commit bbbba97
Show file tree
Hide file tree
Showing 6 changed files with 4,846 additions and 66 deletions.
6 changes: 5 additions & 1 deletion Data/FiniteMap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
-- Stability : provisional
-- Portability : portable
--
-- NOTE: Data.FiniteMap is DEPRECATED, please use "Data.Map" instead.
--
-- A finite map implementation, derived from the paper:
-- /Efficient sets: a balancing act/, S. Adams,
-- Journal of functional programming 3(4) Oct 1993, pp553-562
Expand Down Expand Up @@ -38,7 +40,9 @@
#define OUTPUTABLE_key {--}
#endif

module Data.FiniteMap (
module Data.FiniteMap
{-# DEPRECATED "Please use Data.Map instead." #-}
(
-- * The @FiniteMap@ type
FiniteMap, -- abstract type

Expand Down

0 comments on commit bbbba97

Please sign in to comment.