(byte: u8)
| 46 | |
| 47 | #[inline(always)] |
| 48 | pub const fn is_ident_byte(byte: u8) -> bool { |
| 49 | BYTE_IS_IDENT.0[byte as usize] |
| 50 | } |
| 51 | |
| 52 | #[inline(always)] |
| 53 | pub fn is_ident_start_sequence(c: char, c2: char, c3: char) -> bool { |
no outgoing calls
no test coverage detected