Exemple #1
0
 public static bool IsOnomatopoetic(this WordType type) => type.GetBigType() == WordType.Onomatopoetic;
Exemple #2
0
 public static bool IsUnknow(this WordType type) => type.GetBigType() == WordType.Unknow;
Exemple #3
0
 public static bool IsClassification(this WordType type) => type.GetBigType() == WordType.Classifier || type == WordType.NounTimeClassifer;
Exemple #4
0
 public static bool IsMark(this WordType type) => type.GetBigType() == WordType.Mark;
Exemple #5
0
 public static bool IsExclamtion(this WordType type) => type.GetBigType() == WordType.Exclamation;
Exemple #6
0
 public static bool IsIdiom(this WordType type) => type.GetBigType() == WordType.Idiom;
Exemple #7
0
 public static bool IsAbbraviation(this WordType type) => type.GetBigType() == WordType.Abbreviation;
Exemple #8
0
 public static bool IsProNoun(this WordType type) => type.GetBigType() == WordType.Pronoun;
Exemple #9
0
 public static bool IsAuxliary(this WordType type) => type.GetBigType() == WordType.Auxiliary;
Exemple #10
0
 public static bool IsNumber(this WordType type) => type.GetBigType() == WordType.Number;
Exemple #11
0
 public static bool IsPreposition(this WordType type) => type.GetBigType() == WordType.Preposition;
Exemple #12
0
 public static bool IsNotStructureConjunction(this WordType type) => type.GetBigType() == WordType.Conjunction && (type != WordType.ConjunctionStructureAnd && type != WordType.ConjunctionStructureOr);
Exemple #13
0
 public static bool IsConjunction(this WordType type) => type.GetBigType() == WordType.Conjunction;
Exemple #14
0
 public static bool IsAdverb(this WordType type) => type.GetBigType() == WordType.Adverb;
Exemple #15
0
 public static bool IsAdjective(this WordType type) => type.GetBigType() == WordType.AdJective;
Exemple #16
0
 public static bool IsNoun(this WordType type) => type.GetBigType() == WordType.Noun;