ordered_multimap/lib.rs
1//! This crate provides a type [`ListOrderedMultimap`] which is a multimap that maintains insertion order across all
2//! keys and values.
3//!
4//! See the type documentation for more information.
5
6#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
7#![cfg_attr(not(feature = "std"), no_std)]
8
9extern crate alloc;
10
11pub mod list_ordered_multimap;
12
13pub use self::list_ordered_multimap::ListOrderedMultimap;
14
15#[cfg(feature = "serde")]
16mod serde;