Function scsys_core::parse::parse_escaped_char
source · pub fn parse_escaped_char<'a, E>(input: &'a str) -> IResult<&'a str, char, E>where
E: ParseError<&'a str> + FromExternalError<&'a str, ParseIntError>,Expand description
Parse an escaped character: \n, \t, \r, \u{00AC}, etc.