static long longSum(Iterable l) { long sum = 0; for (Long i : unnull(l)) if (i != null) sum += i; ret sum; } static long lambdaMapLike longSum(IF1 f, Iterable l) { ret longSum(mapI(f, l)); }