Legacy compatibility - create simple tree
(capacity: usize)
| 469 | |
| 470 | /// Legacy compatibility - create simple tree |
| 471 | pub fn create_simple_tree(capacity: usize) -> BPlusTreeMap<i32, i32> { |
| 472 | create_tree_capacity_int(capacity) |
| 473 | } |
| 474 | |
| 475 | /// Legacy compatibility - populate tree with sequential data |
| 476 | pub fn populate_sequential(tree: &mut BPlusTreeMap<i32, String>, count: usize) { |
no test coverage detected