cIsAllCap property

bool cIsAllCap

Checks if the string is in all uppercase.

Implementation

bool get cIsAllCap {
  return this == (this).toUpperCase();
}