Repository : ssh://darcs.haskell.org//srv/darcs/packages/containers On branch : master
http://hackage.haskell.org/trac/ghc/changeset/8cde3d55208706ecdd7e0b8a487e0ab8487af4d3 >--------------------------------------------------------------- commit 8cde3d55208706ecdd7e0b8a487e0ab8487af4d3 Author: Johan Tibell <[email protected]> Date: Thu Nov 17 21:47:35 2011 -0800 Document that maps are ordered >--------------------------------------------------------------- Data/Map/Lazy.hs | 3 ++- Data/Map/Strict.hs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Data/Map/Lazy.hs b/Data/Map/Lazy.hs index 064db58..cf94159 100644 --- a/Data/Map/Lazy.hs +++ b/Data/Map/Lazy.hs @@ -12,7 +12,8 @@ -- Stability : provisional -- Portability : portable -- --- An efficient implementation of maps from keys to values (dictionaries). +-- An efficient implementation of ordered maps from keys to values +-- (dictionaries). -- -- Since many function names (but not the type name) clash with -- "Prelude" names, this module is usually imported @qualified@, e.g. diff --git a/Data/Map/Strict.hs b/Data/Map/Strict.hs index ba50f05..ee45153 100644 --- a/Data/Map/Strict.hs +++ b/Data/Map/Strict.hs @@ -12,7 +12,8 @@ -- Stability : provisional -- Portability : portable -- --- An efficient implementation of maps from keys to values (dictionaries). +-- An efficient implementation of ordered maps from keys to values +-- (dictionaries). -- -- Since many function names (but not the type name) clash with -- "Prelude" names, this module is usually imported @qualified@, e.g. _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
