//! Compact, inline-optimized hash map.
//!
//! [`SmallMap`] stores up to `N` key-value pairs inline (on the stack) and
//! spills to a heap-allocated [`hashbrown::HashMap`] when the inline capacity
//! is exceeded.
pub use ;
pub use ;
pub use SmallMap;