toCode_mayAZ static method

int toCode_mayAZ(
  1. int code
)

如果是字母,则转为大写A-Z,否则返回code

Implementation

static int toCode_mayAZ(int code) {
  return toCode_tryAZ(code) ?? code;
}