static void forEach(Iterable l, IVF1 f) {
if (f != null && l != null) for (A a : l)
callF(f, a);
}
static void lambdaMapLike forEach(IVF1 f, Iterable l) {
forEach(l, f);
}
static void forEach(A[] l, IVF1 f) {
if (f != null && l != null) for (A a : l)
callF(f, a);
}
static void forEach(Map map, IVF1 f) {
for (A a, B b : map)
f.get(a, b);
}
}