(&self)
| 325 | /// Returns an iterator over chunks of 64 bits, with the remaining bits zero padded to 64-bits |
| 326 | #[inline] |
| 327 | pub fn iter_padded(&self) -> impl Iterator<Item = u64> + 'a { |
| 328 | self.iter().chain(std::iter::once(self.remainder_bits())) |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | impl<'a> IntoIterator for BitChunks<'a> { |
no test coverage detected