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