static bool isWordish(S s) { if (!hasLetters(s)) false; for i over s: { char c = s.charAt(i); if (!isLetterOrDigitOrApostrophe(c)) false; } true; }