static long totalLineCount(Iterable l) { long n = 0; if (l != null) for (S s : l) n += countLines(s); ret n; }