(byte: u8)
| 326 | /// bits `10`). |
| 327 | #[inline] |
| 328 | const fn utf8_is_cont_byte(byte: u8) -> bool { |
| 329 | (byte as i8) < -64 |
| 330 | } |
| 331 | |
| 332 | /// Mask of the value bits of a continuation byte. |
| 333 | const CONT_MASK: u8 = 0b0011_1111; |
no outgoing calls
no test coverage detected