Change HashMap to BTreeMap.

This commit is contained in:
Stephen Chung
2021-03-23 12:13:53 +08:00
parent 7a0032fc89
commit f70225ca1d
19 changed files with 139 additions and 214 deletions

View File

@@ -19,7 +19,8 @@ mod inner {
pub use core_error as error;
pub mod collections {
pub use hashbrown::{hash_map, hash_set, HashMap, HashSet};
pub use alloc::collections::btree_map::BTreeMap;
pub use alloc::collections::btree_set::BTreeSet;
}
}