(&self)
| 831 | /// Returns an iterator for the string’s code points. |
| 832 | #[inline] |
| 833 | pub fn code_points(&self) -> Wtf8CodePoints<'_> { |
| 834 | Wtf8CodePoints { |
| 835 | bytes: self.bytes.iter(), |
| 836 | } |
| 837 | } |
| 838 | |
| 839 | /// Returns an iterator for the string’s code points and their indices. |
| 840 | #[inline] |
no test coverage detected