Function is_plural
Source pub fn is_plural(word: &str) -> bool
Expand description
Returns wheter the noun is plural, if it is uncountable, will return true
§Arguments
§Examples
use pluralize_rs::is_plural;
assert!(is_plural("words"));
assert!(!is_plural("word"));