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); }