Crates.io | collecting-hashmap |
lib.rs | collecting-hashmap |
version | 0.2.0 |
source | src |
created_at | 2018-10-27 18:18:51.907305 |
updated_at | 2018-10-29 09:59:00.14566 |
description | A hashmap that will store multiple values for a key |
homepage | https://github.com/pwoolcoc/collecting-hashmap |
repository | |
max_upload_size | |
id | 92968 |
size | 25,787 |
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