What is better practice?
const int32 WordLength = CurrentWord.Len();
if (WordLength >= 4 && WordLength <= 8 && IsIsogram(CurrentWord))
{
...
}
or
if (CurrentWord.Len() >= 4 && CurrentWord.Len() <= 8 && IsIsogram(CurrentWord))
{
...
}
Especially if this code runs in a HUGE loop