MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / populate_sequential

Function populate_sequential

rust/tests/test_utils.rs:476–478  ·  view source on GitHub ↗

Legacy compatibility - populate tree with sequential data

(tree: &mut BPlusTreeMap<i32, String>, count: usize)

Source from the content-addressed store, hash-verified

474
475/// Legacy compatibility - populate tree with sequential data
476pub 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
481pub fn populate_sequential_int(tree: &mut BPlusTreeMap<i32, i32>, count: usize) {

Calls 1

insert_sequential_rangeFunction · 0.85

Tested by

no test coverage detected