Checks if the character is a decimal digit (0-9).
bool isdigit(String c) { int code = _getCode(c); return code >= 48 && code <= 57; }