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