static ItIt countTo(int a default 0, int b) { ret countIterator(a, b); } static ItIt countTo(int a default 0, int b, IF1 f) { ret countIterator(a, b, f); } static ItIt countTo(int a, int b, int step) { ret countIterator(a, b, step); } static ItIt countTo(double a, double b, double step, IF1 f) { ret countIterator(a, b, step, f); } static ItIt countTo(double a, double b, double step) { ret countIterator(a, b, step); } static ItIt lambdaMapLike countTo(IF1 f, double a, double b, double step) { ret countIterator(f, a, b, step); } static ItIt countTo(IF1 f, int a default 0, int b) { ret countIterator(f, a, b); } static ItIt countTo(L l) { ret countIterator(l); }