isDigit static method

bool isDigit(
  1. int c
)

Implementation

static bool isDigit(int c) => c >= CC_0 && c <= CC_9;