hashable-map 0.1.0

A wrapper for HashMap that implements Hash
Documentation
1
2
3
4
5
6
7
8
9
10
# Hashable Map

This is a simple wrapper around `std::collections::HashMap` without any additional dependencies that implements `Hash`.
The `Hash` implementation respects the property 

```
k1 == k2 -> hash(k1) == hash(k2)
```

In other words, if two keys are equal, their hashes must also be equal.