static float floatMin(Collection l) { float x = Float.MAX_VALUE; fOr (float i : l) x = min(x, i); ret x; }