hashable-map 0.2.0

Wrappers for HashMap and HashSet that implement Hash
Documentation

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.