static long totalByteCapacityOfStringBuffers_generic(Iterable l) { long n = 0; for (O s : unnull(l)) if (s != null) n += toInt(callOpt(s, 'capacity))*2; ret n; }