Standard tree with capacity 4 for integer keys and values
()
| 15 | |
| 16 | /// Standard tree with capacity 4 for integer keys and values |
| 17 | pub fn create_tree_4_int() -> BPlusTreeMap<i32, i32> { |
| 18 | BPlusTreeMap::new(4).expect("Failed to create integer tree with capacity 4") |
| 19 | } |
| 20 | |
| 21 | /// Standard tree with capacity 5 (for odd capacity testing) |
| 22 | pub fn create_tree_5() -> BPlusTreeMap<i32, String> { |
no outgoing calls
no test coverage detected