static bool neqOneOf(O o, O... l) { for (O x : l) if (eq(o, x)) ret false; ret true; }