Function is_digit
pub fn is_digit(chr: u8) -> boolAvailable on (crate features
rustls or boring or acme) and crate feature rustls only.Expand description
Tests if byte is ASCII digit: 0-9
ยงExample
assert_eq!(is_digit(b'a'), false);
assert_eq!(is_digit(b'9'), true);