isAlphanumeric function

bool isAlphanumeric(
  1. int c
)

Implementation

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