static double floatSumAsDouble(Iterable l) { double sum = 0; for (Float i : unnull(l)) if (i != null) sum += i; ret sum; } static double floatSumAsDouble(float... l) { double sum = 0; if (l != null) for (float i : l) sum += i; ret sum; }