public static bool IsPunctuator(ComprenoSentenceElementType type) { return type.Value == Punctuator_FullStop.Value || type.Value == Punctuator_Comma.Value || type.Value == Punctuator_LeftRoundBracket.Value || type.Value == Punctuator_RightRoundBracket.Value || type.Value == Punctuator_Colon.Value ; }
public static bool IsWord(ComprenoSentenceElementType type) { return type.Value == Word.Value; }
public static bool IsBracket(ComprenoSentenceElementType type) { return type.Value == Punctuator_LeftRoundBracket.Value || type.Value == Punctuator_RightRoundBracket.Value ; }