Changes between Version 1 and Version 2 of Proposals/unordered-containers
- Timestamp:
- 03/19/13 00:05:51 (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Proposals/unordered-containers
v1 v2 25 25 The 'unordered-containers' package implements hashing-based containers that trade some functionality (lack of ordering) for speed. The 'hashable' package provides a type class that, like Ord, is implemented by all types that can be used as keys in these containers. 26 26 27 Documentation and tarball from the hackage page:27 Documentation and tarballs from Hackage: 28 28 29 http://hackage.haskell.org/package/unordered-containers30 http://hackage.haskell.org/package/hashable29 * http://hackage.haskell.org/package/unordered-containers 30 * http://hackage.haskell.org/package/hashable 31 31 32 Development repo :32 Development repos: 33 33 34 https://github.com/tibbel/unordered-containers35 https://github.com/tibbel/hashable34 * https://github.com/tibbel/unordered-containers 35 * https://github.com/tibbel/hashable 36 36 37 37 … … 72 72 73 73 {{{ 74 empty 75 :: (k -> Int) -- ^ hash function 76 -> (k -> k -> Bool) -- ^ equality test 77 -> HashMap k v 74 empty :: (k -> Int) -- ^ hash function 75 -> (k -> k -> Bool) -- ^ equality test 76 -> HashMap k v 78 77 }}} 79 78
