static void forEach(Iterable l, IVF1 f) { if (l != null) for (A a : l) callF(f, a); } static void lambdaMapLike forEach(IVF1 f, Iterable l) { forEach(l, f); }