(&mut self)
| 158 | /// Helper method to create empty root leaf |
| 159 | #[inline] |
| 160 | fn create_empty_root_leaf(&mut self) { |
| 161 | let empty_id = self.allocate_leaf(LeafNode::new(self.capacity)); |
| 162 | self.root = NodeRef::Leaf(empty_id, PhantomData); |
| 163 | } |
| 164 | |
| 165 | /// Helper to check if a node is underfull. |
| 166 | #[inline] |
no test coverage detected