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

Function create_tree_4_int

rust/tests/test_utils.rs:17–19  ·  view source on GitHub ↗

Standard tree with capacity 4 for integer keys and values

()

Source from the content-addressed store, hash-verified

15
16/// Standard tree with capacity 4 for integer keys and values
17pub fn create_tree_4_int() -> BPlusTreeMap<i32, i32> {
18 BPlusTreeMap::new(4).expect("Failed to create integer tree with capacity 4")
19}
20
21/// Standard tree with capacity 5 (for odd capacity testing)
22pub fn create_tree_5() -> BPlusTreeMap<i32, String> {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected