public static bool IsLexChar(this int value, LexChar lex)
 {
     return(value == (int)lex);
 }
 public static bool InLexCharRange(this int value, LexChar lowLex, LexChar highLex)
 {
     return(value >= (int)lowLex && value <= (int)highLex);
 }