Create tree with capacity 4 and insert 0..count sequential data
(count: usize)
| 129 | |
| 130 | /// Create tree with capacity 4 and insert 0..count sequential data |
| 131 | pub fn create_tree_4_with_data(count: usize) -> BPlusTreeMap<i32, String> { |
| 132 | let mut tree = create_tree_4(); |
| 133 | insert_sequential_range(&mut tree, count); |
| 134 | tree |
| 135 | } |
| 136 | |
| 137 | /// Create integer tree with capacity 4 and insert 0..count sequential data |
| 138 | pub fn create_tree_4_int_with_data(count: usize) -> BPlusTreeMap<i32, i32> { |
no test coverage detected