static Int firstNonNegativeInt(Iterable l) { ret firstThat(i -> i != null && i >= 0, l); }