Standard tree with capacity 6 (for specific testing scenarios)
()
| 25 | |
| 26 | /// Standard tree with capacity 6 (for specific testing scenarios) |
| 27 | pub fn create_tree_6() -> BPlusTreeMap<i32, String> { |
| 28 | BPlusTreeMap::new(6).expect("Failed to create tree with capacity 6") |
| 29 | } |
| 30 | |
| 31 | /// Generic tree creation with custom capacity |
| 32 | pub fn create_tree_capacity(capacity: usize) -> BPlusTreeMap<i32, String> { |
no outgoing calls
no test coverage detected