Returns the row pointers associated with the given row `hash`.
(&self, hash: RowHash)
| 194 | |
| 195 | /// Returns the row pointers associated with the given row `hash`. |
| 196 | pub fn pointers_for(&self, hash: RowHash) -> &[RowPointer] { |
| 197 | self.map.get(&hash).map_or(&[], |poc| self.poc_pointers(poc)) |
| 198 | } |
| 199 | |
| 200 | /// Returns the row pointers for `poc`. |
| 201 | fn poc_pointers<'a>(&'a self, poc: &'a PtrOrCollider) -> &'a [RowPointer] { |
no test coverage detected