sbool all(O pred, Iterable 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;
}
static bool lambdaMapLike all(IF1 f, Iterable l) {
ret all(l, f);
}
sbool all(int[] l, IIntPred f) {
if (l != null) for (int i : l) if (!f.get(i)) false;
true;
}