isDigit function

bool isDigit(
  1. int c
)

Implementation

bool isDigit(int c) {
  if (c < _codeUnit_0 || c > _codeUnit_9) return false;
  return true;
}