static long totalByteSizeOfCharSequences(Iterable l) { long n = 0; for (CharSequence s : unnull(l)) n += l(s)*2; ret n; }