Legacy compatibility - populate tree with sequential data
(tree: &mut BPlusTreeMap<i32, String>, count: usize)
| 474 | |
| 475 | /// Legacy compatibility - populate tree with sequential data |
| 476 | pub fn populate_sequential(tree: &mut BPlusTreeMap<i32, String>, count: usize) { |
| 477 | insert_sequential_range(tree, count); |
| 478 | } |
| 479 | |
| 480 | /// Legacy compatibility - populate tree with sequential integer data |
| 481 | pub fn populate_sequential_int(tree: &mut BPlusTreeMap<i32, i32>, count: usize) { |
no test coverage detected