@hackage hashmap1.1.0.1
Persistent containers HashMap and HashSet.
Deprecated
Dependencies (3)
- base >=4.0 && <5
- containers >=0.3
- hashable >=1.0 Show all…
Dependents (22)
@hackage/confsolve, @hackage/openapi3-code-generator, @hackage/timeplot, @hackage/YamlReference, @hackage/wai-app-file-cgi, @hackage/acme-everything, Show all…
An implementation of persistent HashMap and HashSet on
top of Data.IntMap.IntMap and Data.IntSet.IntSet,
with very similar API. It uses Hashable class from the
hashable package for hashing.
The is an HashMap key valueData.IntMap.IntMap
indexed by the hash value, containing
for all keys with the same hash value.Data.Map.Map key value
The is an HashSet elemData.IntMap.IntMap indexed by
the hash value, containing for
all elements with the same hash value.Data.Set.Set elem