static IterableIterator mapLike mapI_notNulls(O f, Iterable i) { ret nonNullIterator(mapI(f, i)); } static IterableIterator mapLike mapI_notNulls(IF1 f, Iterable i) { ret mapI_notNulls((O) f, i); } static IterableIterator mapLike mapI_notNulls(Iterable i, IF1 f) { ret mapI_notNulls((O) f, i); }