(&self)
| 839 | /// Returns an iterator for the string’s code points and their indices. |
| 840 | #[inline] |
| 841 | pub fn code_point_indices(&self) -> Wtf8CodePointIndices<'_> { |
| 842 | Wtf8CodePointIndices { |
| 843 | front_offset: 0, |
| 844 | iter: self.code_points(), |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | /// Access raw bytes of WTF-8 data |
| 849 | #[inline] |
no test coverage detected