sS withStringBuilder(IVF1 f) { new StringBuilder buf; if (f != null) f.get(buf); ret str(buf); } sS withStringBuilder(int expectedLength, IVF1 f) { StringBuilder buf = new(expectedLength); if (f != null) f.get(buf); ret str(buf); }