static bool cicOneOf(S s, S... l) { for (S x : l) if (cic(s, x)) ret true; ret false; } static bool cicOneOf(Collection l, S... bla) { for (S x : unnull(l)) if (eqicOneOf(x, bla)) true; false; }