isLower method

bool isLower()

Implementation

bool isLower() {
  return compareTo('a') >= 0 && compareTo('z') <= 0;
}