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;
}