(&mut self, index: usize, v: bool)
| 150 | /// Sets a bit in the builder at `index` |
| 151 | #[inline] |
| 152 | pub fn set_bit(&mut self, index: usize, v: bool) { |
| 153 | self.materialize_if_needed(); |
| 154 | self.bitmap_builder.as_mut().unwrap().set_bit(index, v); |
| 155 | } |
| 156 | |
| 157 | /// Gets a bit in the buffer at `index` |
| 158 | #[inline] |
no test coverage detected