isEmbeddedNegativeInt method

bool isEmbeddedNegativeInt(
  1. int typeCode
)

Implementation

bool isEmbeddedNegativeInt(int typeCode) {
  return typeCode >= INT_NEG_START && typeCode < (INT_NEG_START + INT_NEG_COUNT);
}