multi-map icon indicating copy to clipboard operation
multi-map copied to clipboard

Like a Rust std::collection::HashMap, but allows you to use either of two different keys to retrieve items.

Results 3 multi-map issues
Sort by recently updated
recently updated
newest added

First of all, thank you very much for the quick responses and gentle guidance. I also stumbled over the missing `len()` method, which I implemented for myself in my fork....

The link on [crates.io](https://crates.io/crates/multi-map) points to [https://thejpster.github.io/multi-map/doc/multi_map/index.html](https://thejpster.github.io/multi-map/doc/multi_map/index.html) which does not exist. Other crates are pointing to [docs.rs]( docs.rs), so I guess [https://docs.rs/multi-map](https://docs.rs/multi-map) might be a better option in the cargo.toml

A multimap is a `K -> Set` mapping. - [Multimap on Wikipedia](https://en.wikipedia.org/wiki/Multimap) - [C++'s `std::container::multimap`](https://en.cppreference.com/w/cpp/container/multimap.html) [^0] [^0]: As usual with C++ data-structures, order is imposed to keep things "nice" and...