deferred_map/lib.rs
1mod handle;
2mod map;
3mod secondary;
4mod slot;
5mod utils;
6
7pub use handle::Handle;
8pub use map::DeferredMap;
9pub use secondary::SecondaryMap;
10
11#[cfg(test)]
12mod tests {
13 // Test modules for DeferredMap
14 // DeferredMap 的测试模块
15 mod debug_safety;
16 mod edge_cases;
17 mod handle;
18 mod insertion;
19 mod new_features;
20 mod removal;
21 mod secondary_test;
22}