sbool hasIntRangesLongerThan(final int threshold, L l) { for (IntRange r : unnull(l)) if (r.length() >= threshold) true; false; } sbool intRangesLongerThan(L l, int threshold) { ret hasIntRangesLongerThan(threshold, l); }