[][src]Function pluralize_rs::is_plural

pub fn is_plural(word: &str) -> bool

Returns wheter the noun is plural, if it is uncountable, will return true

Arguments

  • word - The noun

Examples

use pluralize_rs::is_plural;
assert!(is_plural("words"));
assert!(!is_plural("word"));