static L intRangesLongerThan(final int threshold, L l) { ret [IntRange r : l | r.length() >= threshold]; } static L intRangesLongerThan(L l, int threshold) { ret intRangesLongerThan(threshold, l); }