(&mut self, chunk_size: usize)
| 185 | } |
| 186 | |
| 187 | pub(crate) fn chunks(&mut self, chunk_size: usize) -> impl Iterator<Item = RowBitmapMut<'_, T>> { |
| 188 | self.rows.borrow_mut().chunks_mut(chunk_size).map(|chunk| RowBitmapMut { |
| 189 | width: self.width, |
| 190 | rows: MutCow::Borrowed(chunk), |
| 191 | }) |
| 192 | } |
| 193 | |
| 194 | #[must_use] |
| 195 | pub(crate) fn len(&mut self) -> usize { |
no test coverage detected