Returns true if this leaf node is at capacity.
(&self)
| 421 | |
| 422 | /// Returns true if this leaf node is at capacity. |
| 423 | pub fn is_full(&self) -> bool { |
| 424 | self.keys.len() >= self.capacity |
| 425 | } |
| 426 | |
| 427 | /// Returns true if this leaf node needs to be split. |
| 428 | /// We allow one extra key beyond capacity to ensure proper splitting. |
no test coverage detected