isFixedString method

bool isFixedString(
  1. int typeCode
)

Implementation

bool isFixedString(int typeCode) {
  return typeCode >= STR_START && typeCode < (STR_START + STR_COUNT);
}