Standard tree with capacity 5 (for odd capacity testing)
()
| 20 | |
| 21 | /// Standard tree with capacity 5 (for odd capacity testing) |
| 22 | pub fn create_tree_5() -> BPlusTreeMap<i32, String> { |
| 23 | BPlusTreeMap::new(5).expect("Failed to create tree with capacity 5") |
| 24 | } |
| 25 | |
| 26 | /// Standard tree with capacity 6 (for specific testing scenarios) |
| 27 | pub fn create_tree_6() -> BPlusTreeMap<i32, String> { |
no outgoing calls
no test coverage detected