(&self)
| 439 | /// Returns true if this leaf can donate a key to a sibling. |
| 440 | #[inline] |
| 441 | pub fn can_donate(&self) -> bool { |
| 442 | self.keys.len() > self.min_keys() |
| 443 | } |
| 444 | |
| 445 | // ============================================================================ |
| 446 | // OTHER HELPERS |
no test coverage detected