(&mut self)
| 1360 | |
| 1361 | #[inline] |
| 1362 | fn next(&mut self) -> Option<CodePoint> { |
| 1363 | // SAFETY: `self.bytes` has been created from a WTF-8 string |
| 1364 | unsafe { next_code_point(&mut self.bytes).map(|c| CodePoint { value: c }) } |
| 1365 | } |
| 1366 | |
| 1367 | #[inline] |
| 1368 | fn size_hint(&self) -> (usize, Option<usize>) { |
no test coverage detected