static LS longerThan(Iterable l, int x) { ret filter(l, s -> l(s) > x); } static LS longerThan(int x, Iterable l) { ret longerThan(l, x); } static bool longerThan(Cl a, Cl b) { ret l(a) > l(b); }