(byte: u8, width: u32)
| 313 | /// for width 3, and 3 bits for width 4. |
| 314 | #[inline] |
| 315 | const fn utf8_first_byte(byte: u8, width: u32) -> u32 { |
| 316 | (byte & (0x7F >> width)) as u32 |
| 317 | } |
| 318 | |
| 319 | /// Returns the value of `ch` updated with continuation byte `byte`. |
| 320 | #[inline] |
no outgoing calls
no test coverage detected