static long intSumAsLong(Iterable l) { long sum = 0; for (Int i : unnull(l)) if (i != null) sum += i; ret sum; }