static > void forEachLevel2(Iterable l, IVF1 f) { if (l != null) for (B b : l) forEach(b, f); } static > void lambdaMapLike forEachLevel2(IVF1 f, Iterable l) { forEachLevel2(f, l); }