isLetter function

bool isLetter(
  1. int x
)

Implementation

bool isLetter(int x) =>
    (char.$a <= x && x <= char.$z) ||
    (char.$A <= x && x <= char.$Z) ||
    x > 127 && isFancyLetter(x);