(&self)
| 433 | /// Returns true if this leaf node is underfull (below minimum occupancy). |
| 434 | #[inline] |
| 435 | pub fn is_underfull(&self) -> bool { |
| 436 | self.keys.len() < self.min_keys() |
| 437 | } |
| 438 | |
| 439 | /// Returns true if this leaf can donate a key to a sibling. |
| 440 | #[inline] |
no test coverage detected