aoutilsFunction is_alphabetic
Source pub fn is_alphabetic(s: &str) -> bool
Expand description
True if the string is made up solely of alphabetic characters
§Arguments
§Examples
use aoutils;
let result = aoutils::is_alphabetic("alpha");
assert_eq!(result, true);