(&self)
| 194 | impl UnpackIterator { |
| 195 | #[pymethod] |
| 196 | fn __length_hint__(&self) -> usize { |
| 197 | self.buffer.len().saturating_sub(self.offset.load()) / self.format_spec.size |
| 198 | } |
| 199 | } |
| 200 | impl SelfIter for UnpackIterator {} |
| 201 |
no test coverage detected