(input: &str, byte: u8)
| 75 | |
| 76 | #[inline] |
| 77 | fn trim_ascii_char(input: &str, byte: u8) -> (&str, u32) { |
| 78 | let start = leading_bytes(input.as_bytes(), byte); |
| 79 | (&input[start..], start as u32) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | /// Right trim - removes trailing characters |
nothing calls this directly
no test coverage detected