(&self, doc: &Doc)
| 51 | /// remove entry |
| 52 | #[inline] |
| 53 | pub fn remove<Doc>(&self, doc: &Doc) |
| 54 | where |
| 55 | Doc: Document, |
| 56 | { |
| 57 | doc.extract().iter().for_each(|index_key| { |
| 58 | self.hash.remove(index_key); |
| 59 | }); |
| 60 | } |
| 61 | |
| 62 | /// lookup by index_key |
| 63 | #[inline] |