sbool mapLike all(O pred, Collection l) { if (l != null) for (O o : l) if (!isTrue(callF(pred, o))) false; true; } static bool all(Iterable l, IF1 f) { if (l != null) for (A a : l) if (!f.get(a)) false; true; }