platform/packages/inflection2/lib/src/uncountable_nouns.dart
thomashii@dukefirehawk.com 32f3eaa5c4 Added and migrated inflection2
2021-05-02 16:39:25 +08:00

16 lines
344 B
Dart

//library inflection2.uncountable;
/// Uncountable nouns are substances, concepts etc that we cannot divide into
/// separate elements. We cannot "count" them.
final Set<String> uncountableNouns = new Set.from(const [
"equipment",
"information",
"rice",
"money",
"species",
"series",
"fish",
"sheep",
"jeans",
"police"
]);