Function scsys_core::parse::parse_unicode
source · pub fn parse_unicode<'a, E>(input: &'a str) -> IResult<&'a str, char, E>where
E: ParseError<&'a str> + FromExternalError<&'a str, ParseIntError>,
Expand description
Parse a unicode sequence, of the form u{XXXX}, where XXXX is 1 to 6 hexadecimal numerals. We will combine this later with parse_escaped_char to parse sequences like \u{00AC}.