isMenksoft static method

bool isMenksoft(
  1. int codeUnit
)

Implementation

static bool isMenksoft(int codeUnit) {
  return codeUnit >= Menksoft.MENKSOFT_START &&
      codeUnit <= Menksoft.MENKSOFT_END;
}