Insert sequential data 0..count with string values
(tree: &mut BPlusTreeMap<i32, String>, count: usize)
| 47 | |
| 48 | /// Insert sequential data 0..count with string values |
| 49 | pub fn insert_sequential_range(tree: &mut BPlusTreeMap<i32, String>, count: usize) { |
| 50 | for i in 0..count { |
| 51 | tree.insert(i as i32, format!("value_{}", i)); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | /// Insert sequential data 0..count with integer values |
| 56 | pub fn insert_sequential_range_int(tree: &mut BPlusTreeMap<i32, i32>, count: usize) { |
no test coverage detected