static long totalSizeInInts(Iterable l) { long sum = 0; fOr (a : l) if (a != null) sum += a.sizeInInts(); ret sum; }