@hackage hashmap1.0.0.2

Persistent containers HashMap and HashSet.

An implementation of persistent HashMap and HashSet on top of Data.IntMap.IntMap and Data.IntSet.IntSet, with very similar API.

The class Hashable is providing the Hashable.hash method.

The HashMap key value is an Data.IntMap.IntMap indexed by the hash value, containing Data.Map.Map key value for all keys with the same hash value.

The HashSet elem is an Data.IntMap.IntMap indexed by the hash value, containing Data.Set.Set elem for all elements with the same hash value.