aoutils

Function is_alphabetic

Source
pub fn is_alphabetic(s: &str) -> bool
Expand description

True if the string is made up solely of alphabetic characters

§Arguments

  • s - the &str to check

§Examples

use aoutils;
let result = aoutils::is_alphabetic("alpha");
assert_eq!(result, true);