is_uncountable

Function is_uncountable 

Source
pub fn is_uncountable(word: &str) -> bool
Expand description

Returns whether a noun is uncountable

§Arguments

  • word - The noun

§Examples

use pluralize_rs::is_uncountable;
assert!(is_uncountable("water"));