toCode_mayaz static method

int? toCode_mayaz(
  1. int code
)

如果是字母,则转为大写a-z,否则返回null

Implementation

static int? toCode_mayaz(int code) {
  return toCode_tryaz(code) ?? code;
}