Warning: session_start(): open(/var/lib/php/sessions/sess_u073s6ij8eekn2m071sllit7vn, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static ItIt countIterator_inclusive_step(int a, final int b, int step) {
assertTrue("step > 0", step > 0);
ret new ItIt() {
int i = a;
public bool hasNext() { ret i <= b; }
public Int next() { var j = i; i += step; ret j; }
};
}
static ItIt countIterator_inclusive_step(double a, double b, double step) {
assertTrue("step > 0", step > 0);
ret new ItIt() {
double i = a;
public bool hasNext() { ret i <= b; }
public Double next() { var j = i; i += step; ret j; }
};
}
static ItIt countIterator_inclusive_step(double a, double b, double step, IF1 f) {
ret mapI_if1(f, countIterator_inclusive_step(a, b, step));
}