(&mut self, key: &PayloadKey)
| 142 | } |
| 143 | |
| 144 | fn remove(&mut self, key: &PayloadKey) -> Option<RoaringBitmap> { |
| 145 | match self { |
| 146 | Self::Equality(m) => m.remove(key), |
| 147 | Self::Range(m) => m.remove(key), |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | fn iter(&self) -> Box<dyn Iterator<Item = (&PayloadKey, &RoaringBitmap)> + '_> { |
| 152 | match self { |
no outgoing calls
no test coverage detected