isEmbeddedPositiveInt method

bool isEmbeddedPositiveInt(
  1. int typeCode
)

Implementation

bool isEmbeddedPositiveInt(int typeCode) {
  return typeCode >= INT_POS_START && typeCode < (INT_POS_START + INT_POS_COUNT);
}