Determine if the string is composed of uppercase characters.

Twine\Str::isUppercase() : bool

Examples

$string = new Twine\Str('JOHNPINKERTON');

        $string->isUppercase(); // Returns true
$string = new Twine\Str('JohnPinkerton');

        $string->isUppercase(); // Returns false