(c: char)
| 22 | |
| 23 | #[inline(always)] |
| 24 | pub const fn is_whitespace(c: char) -> bool { |
| 25 | c.is_ascii() && ASCII_WHITESPACE.0[c as usize] |
| 26 | } |
| 27 | |
| 28 | #[inline(always)] |
| 29 | pub const fn is_newline(c: char) -> bool { |
no outgoing calls
no test coverage detected