(self)
| 364 | /// If the character is absent, then `0` is returned. |
| 365 | #[inline] |
| 366 | pub fn len_utf8(self) -> usize { |
| 367 | char::from_u32(self.0).map_or(0, |c| c.len_utf8()) |
| 368 | } |
| 369 | |
| 370 | /// Returns true iff the character is a word character. |
| 371 | /// |
no outgoing calls
no test coverage detected