isupper method

bool isupper(
  1. String c
)

Checks if the character is an uppercase letter (A-Z).

Implementation

bool isupper(String c) {
  int code = _getCode(c);
  return code >= 65 && code <= 90;
}