NOTICE: This package has been removed from pkgsrc

./wip/hs-unordered-containers, Efficient hashing-based container types

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 0.2.4.0, Package name: hs-unordered-containers-0.2.4.0, Maintainer: pho

Efficient hashing-based container types. The containers have been
optimized for performance critical use, both in terms of large data
quantities and high speed.


Required to run:
[lang/ghc7] [devel/hs-hashable]

Master sites:

SHA1: 28936e52cc1d6fea1622ec5721f3b79bb1a11548
RMD160: 0d62b6b8f95e65890e07934413cd1377ed1e85e5
Filesize: 25.037 KB

Version history: (Expand)


CVS history: (Expand)


   2014-05-27 23:38:22 by Ryosuke Moro | Files touched by this commit (27) | Package removed
Log message:
Remove hs-blaze-markup, imported to pkgsrc/textproc.
Remove hs-unordered-containers, imported to pkgsrc/devel.
   2014-05-25 23:59:28 by Ryosuke Moro | Files touched by this commit (58)
Log message:
Remove hs-hashable, hs-primitive, hs-stm, imported to pkgsrc/devel.
   2014-05-08 02:36:38 by Ryosuke Moro | Files touched by this commit (4)
Log message:
Update to 0.2.4.0
pkgsrc changes: static -> dynamic
changes from https://github.com/tibbe/unordered-containers:
0.2.4.0
 - Avoid code duplication in insert
   The call to Array.insert was duplicated in both branches of
   bitmapIndexedOrFull, due to being lazily evaluated.
   Fixes #76.
 - Add missing docs
 - Merge branch 'master' of https://github.com/hrdinka/unordered-containers
   Conflicts:
	Data/HashMap/Strict.hs
   2014-04-15 12:59:40 by Ryosuke Moro | Files touched by this commit (53)
Log message:
- ready for HASKELL_ENABLE_HADDOCK_DOCUMENTATION= yes
   2013-09-27 15:51:00 by Ryosuke Moro | Files touched by this commit (3)
Log message:
Update to 0.2.3.3

changes:
0.2.3.3
 - -Wall police
 - HashMap: Compatibility with GHC >= 7.7
   2013-09-07 01:28:26 by Ryosuke Moro | Files touched by this commit (2)
Log message:
Update to 0.2.3.2

changes:
0.2.3.2
  - D.H.Strict: only evaluate values if used
      Before this change all value arguments would be evaluated to WHNF even
      if they were never inserted into the map.
      Fixes https://github.com/tibbe/unordered-containers/pull/69
      Fixes https://github.com/tibbe/unordered-containers/issues/57
      Also fix a strictness bug in fromList (fixes \ 
https://github.com/tibbe/unordered-containers/pull/61).
   2013-07-29 21:12:52 by Ryosuke Moro | Files touched by this commit (2)
Log message:
Update to 0.2.3.1

changes:
0.2.3.1
 - Remove support for compilers other than GHC
 - Make GHC >= 7.2 imports conditional
 - Data.HashMap.Array: Add import list for GHC.Exts
     GHC 7.7 now exports fromList/toList for GHC.Exts which conflict with
     names defined in this module.
 - benchmarks: rename hashmap/HashMap to hashmap/Map
 - Add benchmarks for hashmap package comparison
 - Eta-expand some worker functions
     Prior to this change, the computation of the hash
       h0 = hash k0
     would create an extra thunk in every call to e.g. 'lookup'.
 - Drop support for GHC 7.0
   2013-02-21 21:17:40 by Ryosuke Moro | Files touched by this commit (4)
Log message:
Update to 0.2.3.0