static LS notContaining(Iterable l, S x) { ret filter(l, s -> !contains(s, x)); } static LS notContaining(S x, Iterable l) { ret notContaining(l, x); }