Return the number of bits in the buffer.
(&self)
| 260 | |
| 261 | /// Return the number of bits in the buffer. |
| 262 | pub fn len(&self) -> usize { |
| 263 | self.bitmap_builder.as_ref().map_or(self.len, |b| b.len()) |
| 264 | } |
| 265 | |
| 266 | /// Check if the builder is empty. |
| 267 | pub fn is_empty(&self) -> bool { |
no test coverage detected