hashmap-1.3.3: Persistent containers Map and Set based on hashing.
An implementation of persistent Map
and Set
containers
based on hashing. The implementation is build on
top of IntMap
and IntSet
,
with very similar API. It uses Hashable
class from the
hashable
package for hashing.
This package can be used as a drop-in replacement for
Map
and Set
modules.
The
is an Map
key valueIntMap
indexed by the hash value, containing either one (key
, value
)
or a
for all keys with the same hash value.Map
key value
The
is an Set
elemIntMap
indexed by
the hash value, containing either one elem
or
for
all elements with the same hash value.Set
elem
Modules
- Data