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