(&self, id: NodeId)
| 231 | /// Get a reference to a leaf node in the arena. |
| 232 | #[inline] |
| 233 | pub fn get_leaf(&self, id: NodeId) -> Option<&LeafNode<K, V>> { |
| 234 | self.leaf_arena.get(id) |
| 235 | } |
| 236 | |
| 237 | /// Get a mutable reference to a leaf node in the arena. |
| 238 | #[inline] |
no test coverage detected