Crates.io | ordered-multimap |
lib.rs | ordered-multimap |
version | 0.7.4 |
source | src |
created_at | 2018-11-17 22:28:51.467238 |
updated_at | 2024-04-01 10:34:17.349186 |
description | Insertion ordered multimap |
homepage | |
repository | https://github.com/sgodwincs/ordered-multimap-rs |
max_upload_size | |
id | 97308 |
size | 173,367 |
Currently, this crate contains a single type ListOrderedMultimap
. This is a multimap meaning that
multiple values can be associated with a given key, but it also maintains insertion order across all
keys and values.
Basic benchmarks show that the performance of this crate is on par with that of the multimap crate which does not maintain insertion order.
std
(default) enables usage of the standard library. Disabling this features allows this crate to be used in no_std
environments.serde
for (de)serialization.It is planned that a corresponding SetOrderedMultimap
will also be included in this crate which
will provide the same insertion order guarantees, but the set of values associated to a given key
will be an actual set instead of a list.
Licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.
See CONTRIBUTING.md.