Return the bitmap of node ids with `field = value`, or `None` if the value has never been inserted (empty set).
(&self, value: &Value)
| 207 | /// Return the bitmap of node ids with `field = value`, or `None` if the |
| 208 | /// value has never been inserted (empty set). |
| 209 | pub fn equality(&self, value: &Value) -> Option<&RoaringBitmap> { |
| 210 | let key = PayloadKey::from_value(value)?; |
| 211 | self.bitmaps.get(&key) |
| 212 | } |
| 213 | |
| 214 | /// Return the union bitmap of all entries whose key falls in |
| 215 | /// `[low, high]` (with `low_inclusive` / `high_inclusive` controlling |