(&mut self, key: K)
| 173 | } |
| 174 | |
| 175 | pub fn search(&mut self, key: K) -> Result<Option<V>, io::Error> { |
| 176 | self.search_node(self.storage_manager.root_offset(), key) |
| 177 | } |
| 178 | |
| 179 | fn search_node(&mut self, node_offset: usize, key: K) -> Result<Option<V>, io::Error> { |
| 180 | // println!("Searching for key: {} at offset: {}", key, node_offset); |
nothing calls this directly
no test coverage detected