1
2
3
4
5
6
7
8
9
10
11
12
13
//! This crate provides a type [`ListOrderedMultimap`] which is a multimap that maintains insertion order across all
//! keys and values.
//!
//! See the type documentation for more information.

#![cfg_attr(coverage_nightly, feature(no_coverage))]

pub mod list_ordered_multimap;

pub use self::list_ordered_multimap::ListOrderedMultimap;

#[cfg(feature = "serde")]
mod serde;