static bool allEq(O o, O... l) { for (O x : l) if (neq(x, o)) false; true; } static bool allEq(A a, Iterable l) { if (l != null) for (A x : l) if (neq(a, x)) false; true; }