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