1 2 3 4 5 6 7
pub fn is_digit(chr: char) -> bool { chr.is_digit(10) } pub fn is_hex_digit(chr: char) -> bool { chr.is_digit(16) }