()
| 281 | } |
| 282 | |
| 283 | const newReadIterator = () => |
| 284 | new ParallelFilterIterator((new TestIntegerIterator()).take(10), x => { |
| 285 | return x % 2 === 0; |
| 286 | }); |
| 287 | |
| 288 | // Without enforcing serial execution, order gets scrambled; consequently |
| 289 | // the done signal arrives before any of the accepted elements! |
no outgoing calls
no test coverage detected
searching dependent graphs…