isInt method

bool isInt(
  1. int typeCode
)

Implementation

bool isInt(int typeCode) {
  return typeCode == BYTE || typeCode == SHORT || typeCode == INT || typeCode == LONG;
}