platform/packages/inflection3/lib/src/uncountable_nouns.dart

17 lines
340 B
Dart
Raw Normal View History

2021-05-02 08:39:25 +00:00
//library inflection2.uncountable;
/// Uncountable nouns are substances, concepts etc that we cannot divide into
2021-05-17 15:10:07 +00:00
/// separate elements. We cannot 'count' them.
final Set<String> uncountableNouns = Set.from(const [
'equipment',
'information',
'rice',
'money',
'species',
'series',
'fish',
'sheep',
'jeans',
'police'
2021-05-02 08:39:25 +00:00
]);