static bool any(O pred, Iterable l) { if (l != null) for (A a : l) if (isTrue(callF(pred, a))) true; false; } static bool lambdaMapLike any(IF1 pred, Iterable l) { if (l != null) for (A a : l) if (pred.get(a)) true; false; } static bool any(Iterable l, IF1 pred) { ret any(pred, l); } static bool any(A[] l, IF1 pred) { if (l != null) for (A a : l) if (pred.get(a)) true; false; } sbool any(Iterable l) { if (l != null) for (Bool a : l) if (isTrue(a)) true; false; }