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