isBoolValue method

bool isBoolValue()

非零即True

Implementation

bool isBoolValue() {
  return id == 0 ? false : true;
}