static ItIt<Int> inclusiveCountIterator(int a, int b) { ret countIterator_inclusive(a, b); } static <A> ItIt<A> inclusiveCountIterator(int a, int b, IF1<Int, A> f) { ret countIterator_inclusive(a, b, f); } static <A> ItIt<A> inclusiveCountIterator(double a, double b, double step, IF1<Double, A> f) { ret countIterator_inclusive(a, b, step, f); }