( queue: Queue.Queue<A, Cause.Done> )
| 462 | df: (_: D) => F, |
| 463 | fg: (_: F) => G, |
| 464 | gh: (_: G) => H, |
| 465 | hi: (_: H) => I, |
| 466 | ij: (_: I) => J, |
| 467 | jk: (_: J) => K, |
| 468 | kl: (_: K) => Effect.Effect<L, E, R> |
| 469 | ): Sink<L, In, never, E, Exclude<R, Scope.Scope>> |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | /** |
| 474 | * Creates a sink that ignores upstream input and completes from an effect that |
| 475 | * already returns an `End`. |
| 476 | * |
| 477 | * **When to use** |
| 478 | * |
| 479 | * Use when you need to create a sink from an effect that returns both the sink |
nothing calls this directly
no test coverage detected
searching dependent graphs…