static Int firstIntBiggerThan(int x, Iterable l) { for (int i : unnull(l)) if (i > x) ret i; null; }