auto FBullCowGame::IsLowercase(FString Word) const -> bool
{
for (auto Letter : Word)
{
if (!std::islower(Letter))
{
return false;
}
}
return true;
}
auto FBullCowGame::IsLowercase(FString Word) const -> bool
{
for (auto Letter : Word)
{
if (!std::islower(Letter))
{
return false;
}
}
return true;
}