static L countIteratorToList_incl(int a default 0, int b) { ret countIteratorToList_inclusive(a, b); } static L countIteratorToList_incl(int a default 0, int b, IF1 f) { ret countIteratorToList_inclusive(a, b, f); } static L countIteratorToList_incl(int a, int b, int step) { ret countIteratorToList_inclusive(a, b, step); } static L countIteratorToList_incl(double a, double b, double step, IF1 f) { ret countIteratorToList_inclusive(a, b, step, f); } static L countIteratorToList_incl(double a, double b, double step) { ret countIteratorToList_inclusive(a, b, step); } static L lambdaMapLike countIteratorToList_incl(IF1 f, double a, double b, double step) { ret countIteratorToList_inclusive(f, a, b, step); } static L lambdaMapLike countIteratorToList_incl(IF1 f, int a, int b, int step default 1) { ret countIteratorToList_inclusive(f, a, b, step); }