HMap 1.1.6 → 1.1.7
raw patch · 3 files changed
+5/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog +2/−0
- Data/HMap.hs +1/−1
- HMap.cabal +2/−2
ChangeLog view
@@ -1,3 +1,5 @@+1.1.7: Fixed example in docs.+ 1.1.6: Better memory performance: An entry into an HMap does not keep the value alive if the key is not alive. After all, if the key is dead, then there is no way to retrieve the value! Also added IO operation purge to remove dead elements. 1.1.5: Added operation to split a KeyT monad. Super trippyness!
Data/HMap.hs view
@@ -20,7 +20,7 @@ -- > import Data.HMap -- > -- > -- type can be inferred.--- > example :: Key x String -> Key x1 Double -> Key x2 Bool +-- > example :: HKey x String -> HKey x1 Double -> HKey x2 Bool -- > -> String -- > example name salary female = -- > format a ++ "\n" ++ format b ++ "\n"
HMap.cabal view
@@ -1,7 +1,7 @@ Name: HMap-Version: 1.1.6+Version: 1.1.7 Synopsis: Fast heterogeneous maps and unconstrained typeable like functionality.-Description: Fast heterogeneous maps based on Hashmaps and type-able like functionality for type that are not typeable.+Description: Fast heterogeneous maps based on Hashmaps and type-able like functionality for type that are not typeable. License: BSD3 License-file: LICENSE Author: Atze van der Ploeg