isNumeric static method

bool isNumeric(
  1. int c
)

Implementation

static bool isNumeric(int c) {
  return c >= 48 /*'0'*/ && c <= 57 /*'9'*/;
}