()
| 89 | pub(crate) type MapType<K, V> = std::collections::HashMap<K, V, HashState>; |
| 90 | pub(crate) type SetType<K> = std::collections::HashSet<K, HashState>; |
| 91 | pub(crate) fn new_map<K, V>() -> MapType<K, V> { |
| 92 | // TODO: Remove this function |
| 93 | Default::default() |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | // Switch to BTreeMap in debug mode for easier debugging due to deterministic iteration order |
no outgoing calls