Comprehensive tree validation including ordering
(tree: &BPlusTreeMap<i32, String>, context: &str)
| 182 | |
| 183 | /// Comprehensive tree validation including ordering |
| 184 | pub fn assert_full_validation(tree: &BPlusTreeMap<i32, String>, context: &str) { |
| 185 | assert_invariants(tree, context); |
| 186 | verify_ordering(tree); |
| 187 | } |
| 188 | |
| 189 | /// Comprehensive tree validation for integer trees |
| 190 | pub fn assert_full_validation_int(tree: &BPlusTreeMap<i32, i32>, context: &str) { |
no test coverage detected