(n: number)
| 64 | Effect.gen(function*() { |
| 65 | const stream = Stream.range(1, 5) |
| 66 | const f = (n: number) => n % 3 === 0 |
| 67 | const { result1, result2 } = yield* (Effect.all({ |
| 68 | result1: pipe(stream, Stream.takeUntil(f), Stream.runCollect), |
| 69 | result2: pipe( |
no outgoing calls
no test coverage detected