static bool mapLike any(O pred, Iterable l) { if (l != null) for (A a : l) if (isTrue(callF(pred, a))) true; false; } static bool any(IF1 pred, Iterable l) { ret any((O) pred, l); } static bool any(Iterable l, IF1 pred) { ret any(pred, l); }