isUpper method

bool isUpper()

Implementation

bool isUpper() {
  return compareTo('A') >= 0 && compareTo('Z') <= 0;
}