Find the level where the left sibling to the current node at `level` branches off.
(&self, level: usize)
| 603 | |
| 604 | /// Find the level where the left sibling to the current node at `level` branches off. |
| 605 | fn left_sibling_branch_level(&self, level: usize) -> Option<usize> { |
| 606 | self.entry[0..level].iter().rposition(|&e| e != 0) |
| 607 | } |
| 608 | |
| 609 | /// Get the right sibling node to the current node at `level`. |
| 610 | /// Also return the critical key between the current node and the right sibling. |
no test coverage detected