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