//! 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(coverage_attribute))]#![cfg_attr(not(feature ="std"), no_std)]externcrate alloc;pubmodlist_ordered_multimap;pubuseself::list_ordered_multimap::ListOrderedMultimap;#[cfg(feature ="serde")]modserde;