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