Function is_alphabetic
pub fn is_alphabetic(chr: u8) -> boolAvailable on crate feature
crypto only.Expand description
Tests if byte is ASCII alphabetic: A-Z, a-z
ยงExample
assert_eq!(is_alphabetic(b'9'), false);
assert_eq!(is_alphabetic(b'a'), true);