collecting-hashmap 0.2.0

A hashmap that will store multiple values for a key
Documentation
  • Coverage
  • 100%
    29 out of 29 items documented1 out of 29 items with examples
  • Size
  • Source code size: 25.42 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.88 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • pwoolcoc

Collecting HashMap

This is a HashMap that stores all values as a Vec of values instead of a single value. So a CollectingHashMap<K, V> is pretty much the same as a HashMap<K, Vec<V>> with some tweaks to the API to make this a bit easier to work with