Remove a PK entry (used when a row is deleted and compacted away).
(&mut self, pk_bytes: &[u8])
| 81 | |
| 82 | /// Remove a PK entry (used when a row is deleted and compacted away). |
| 83 | pub fn remove(&mut self, pk_bytes: &[u8]) -> Option<RowLocation> { |
| 84 | self.inner.remove(pk_bytes) |
| 85 | } |
| 86 | |
| 87 | /// Check whether a PK exists in the index. |
| 88 | pub fn contains(&self, pk_bytes: &[u8]) -> bool { |
no outgoing calls