isDigit function

bool isDigit(
  1. int c
)

Implementation

bool isDigit(int c) => c >= 0x30 && c <= 0x39;