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