Merge another bitmap into this one (union). Used during compaction to combine delete bitmaps from multiple source segments.
(&mut self, other: &DeleteBitmap)
| 131 | /// Merge another bitmap into this one (union). Used during compaction |
| 132 | /// to combine delete bitmaps from multiple source segments. |
| 133 | pub fn merge(&mut self, other: &DeleteBitmap) { |
| 134 | self.inner |= &other.inner; |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | impl Default for DeleteBitmap { |
no outgoing calls