Returns the row pointers for `poc`.
(&'a self, poc: &'a PtrOrCollider)
| 199 | |
| 200 | /// Returns the row pointers for `poc`. |
| 201 | fn poc_pointers<'a>(&'a self, poc: &'a PtrOrCollider) -> &'a [RowPointer] { |
| 202 | match poc.unpack() { |
| 203 | MapSlotRef::Pointer(ro) => slice::from_ref(ro), |
| 204 | MapSlotRef::Collider(ci) => &self.colliders[ci.idx()], |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | /// Returns the row pointers associated with the given row `hash`. |
| 209 | /// |
no test coverage detected