|
|
|
|
|
by nine_k
424 days ago
|
|
In Python, such steps like map() and filter() would execute concurrently, without large intermediate arrays. It lacks the chaining syntax for them, too. Java streams are the closest equivalent, both by the concurrent execution model, and syntactically. And yes, the Java debugger can show you the state of the intermediate streams. |
|
Iterators are not (necessarily) concurrent. I believe you mean lazily.