16 lines
340 B
Dart
16 lines
340 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 = Set.from(const [
|
|
'equipment',
|
|
'information',
|
|
'rice',
|
|
'money',
|
|
'species',
|
|
'series',
|
|
'fish',
|
|
'sheep',
|
|
'jeans',
|
|
'police'
|
|
]);
|