pub const digit_hex: MapParser<CharParser, fn(char) -> usize>;
Matches a hexadecimal digit '0'-'9', 'a'-'f', or 'A'-'F', and converts it to its integer value 0-15.
'0'
'9'
'a'
'f'
'A'
'F'
0
15