kStopWords constant Null safety

Set<String> const kStopWords

A collection of stop-words excluded from tokenization.

Implementation

static const kStopWords = {
  'a',
  'about',
  'above',
  'across',
  'after',
  'against',
  'all',
  'along',
  'although',
  'among',
  'an',
  'and',
  'another',
  'any',
  'anybody',
  'anyone',
  'anything',
  'anywhere',
  'are',
  'around',
  'as',
  'at',
  'aught',
  'be',
  'because',
  'before',
  'behind',
  'between',
  'beyond',
  'both',
  'but',
  'by',
  'case',
  'certain',
  'concerning',
  'despite',
  'down',
  'during',
  'each',
  'either',
  'enough',
  'even',
  'event',
  'every',
  'everybody',
  'everyone',
  'everything',
  'everywhere',
  'except',
  'few',
  'fewer',
  'fewest',
  'following',
  'for',
  'from',
  'he',
  'her',
  'hers',
  'herself',
  'him',
  'himself',
  'his',
  'I',
  'idem',
  'if',
  'in',
  'including',
  'into',
  'is',
  'it',
  'its',
  'itself',
  'last',
  'least',
  'less',
  'lest',
  'like',
  'little',
  'long',
  'many',
  'mine',
  'more',
  'most',
  'much',
  'naught',
  'near',
  'neither',
  'next',
  'no',
  'nobody',
  'none',
  'nor',
  'not',
  'nothing',
  'nought',
  'now',
  'nowhere',
  'of',
  'off',
  'on',
  'once',
  'one',
  'only',
  'onto',
  'or',
  'order',
  'other',
  'others',
  'ought',
  'our',
  'ours',
  'ourself',
  'ourselves',
  'out',
  'over',
  'past',
  'plus',
  'provided',
  'said',
  'several',
  'she',
  'since',
  'so',
  'some',
  'somebody',
  'someone',
  'something',
  'somewhat',
  'somewhere',
  'soon',
  'such',
  'suchlike',
  'sufficient',
  'supposing',
  'than',
  'that',
  'the',
  'thee',
  'their',
  'theirs',
  'theirself',
  'theirselves',
  'them',
  'themself',
  'themselves',
  'there',
  'these',
  'they',
  'thine',
  'this',
  'those',
  'thou',
  'though',
  'throughout',
  'thy',
  'thyself',
  'till',
  'time',
  'to',
  'towards',
  'under',
  'unless',
  'until',
  'up',
  'upon',
  'us',
  'was',
  'we',
  'were',
  'what',
  'whatever',
  'whatnot',
  'whatsoever',
  'when',
  'whence',
  'whenever',
  'where',
  'whereas',
  'whereby',
  'wherefrom',
  'wherein',
  'whereinto',
  'whereof',
  'whereon',
  'wheresoever',
  'whereto',
  'whereunto',
  'wherever',
  'wherewith',
  'wherewithal',
  'whether',
  'which',
  'whichever',
  'whichsoever',
  'while',
  'who',
  'whoever',
  'whom',
  'whomever',
  'whomso',
  'whomsoever',
  'whose',
  'whosesoever',
  'whosever',
  'whoso',
  'whosoever',
  'with',
  'within',
  'without',
  'ye',
  'yet',
  'yon',
  'yonder',
  'you',
  'your',
  'yours',
  'yourself',
  'yourselves',
};