toCode_AZ static method

int toCode_AZ(
  1. int code
)

转为大写字母

  • 必须确保code是字母

Implementation

static int toCode_AZ(int code) {
  if (isCode_az(code)) {
    return code - (CODE_a - CODE_A);
  }
  assert(isCode_AZ(code));
  return code;
}