My lowercase checker

Nothing spectacular, just this

bool FBullCowGame::IsLowercase(FString Word) const
{
    if (Word.length() < 2) { return true; }

    for (auto Letter : Word)
    {
	    if (!islower(Letter))
	    {
		    return false;
	    }
    }

    return true;
}