isBool method

bool isBool(
  1. int typeCode
)

Implementation

bool isBool(int typeCode) {
  return typeCode == TRUE || typeCode == FALSE;
}