blob: 4cd8c8dfeda6508124aa3ba7c1fad176ac558ca5 [file] [log] [blame]
>>>
Iterable<Task> generate() sync* {
int i = 0;
while (i++ < 100) {
yield new Task(i, rnd.nextInt(100), calc);
}
}
<<<
Iterable<Task> generate() sync* {
int i = 0;
while (i++ < 100) {
yield new Task(i, rnd.nextInt(100), calc);
}
}