sS firstLetterToUpper(S s) { int i = indexOfFirstLetter(s); ret i < 0 ? s : spliceString(s, i, i+1, upper(s.charAt(i))); }