static long totalByteCapacityOfStringBuffers(Iterable l) { long n = 0; for (StringBuffer s : unnull(l)) if (s != null) n += s.capacity()*2; ret n; }