( effect: Effect.Effect<Pull.Pull<OutElem, OutErr, OutDone, EnvX>, EX, Env> )
| 366 | * const channel = Channel.fromPull(Effect.sync(() => { |
| 367 | * let emitted = false |
| 368 | * return Effect.suspend(() => { |
| 369 | * if (emitted) return Cause.done() |
| 370 | * emitted = true |
| 371 | * return Effect.succeed(42) |
| 372 | * }) |
| 373 | * })) |
| 374 | * await Effect.runPromise(Channel.runCollect(channel)) // => [42] |
no test coverage detected
searching dependent graphs…