isAlpha function

bool isAlpha(
  1. int c
)

Implementation

bool isAlpha(int c) => c >= 0x41 && c <= 0x5A || c >= 0x61 && c <= 0x7A;