@hackage hashmap1.0.0
Persistent containers HashMap and HashSet.
Deprecated
Dependencies (3)
- base >=4.0 && <5
- bytestring >=0.9
- containers >=0.3 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.
The class Hashable is providing the Hashable.hash
method.
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 key value