summaryrefslogtreecommitdiffstats
path: root/src/map.rs
blob: baf4e3b72282752433aaf487303bec06a183e0c0 (plain)
1
2
3
4
#[cfg(not(feature = "preserve_order"))]
pub type MapImpl<K, V> = std::collections::HashMap<K, V>;
#[cfg(feature = "preserve_order")]
pub type MapImpl<K, V> = indexmap::IndexMap<K, V>;