Repository : ssh://darcs.haskell.org//srv/darcs/packages/base On branch : master
http://hackage.haskell.org/trac/ghc/changeset/7695a8baf8253198abf8c7a4e77f5c432d887371 >--------------------------------------------------------------- commit 7695a8baf8253198abf8c7a4e77f5c432d887371 Author: Ian Lynagh <[email protected]> Date: Fri Jun 29 23:06:19 2012 +0100 Deprecate the Data.HashTable module >--------------------------------------------------------------- Data/HashTable.hs | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/Data/HashTable.hs b/Data/HashTable.hs index b594863..9ce023c 100644 --- a/Data/HashTable.hs +++ b/Data/HashTable.hs @@ -19,7 +19,9 @@ -- ----------------------------------------------------------------------------- -module Data.HashTable ( +module Data.HashTable + {-# DEPRECATED "Data.HashTable will be removed in GHC 7.8. Please use an alternative, e.g. the hashtables package, instead." #-} + ( -- * Basic hash table operations HashTable, new, newHint, insert, delete, lookup, update, -- * Converting to and from lists _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
