( effect: Effect.Effect<Sink<A, In, L, E, R2>, E, R> )
| 1908 | * @since 2.0.0 |
| 1909 | */ |
| 1910 | export const unwrap = <A, In, L, E, R, R2>( |
| 1911 | effect: Effect.Effect<Sink<A, In, L, E, R2>, E, R> |
| 1912 | ): Sink<A, In, L, E, Exclude<R, Scope.Scope> | R2> => fromChannel(Channel.unwrap(Effect.map(effect, toChannel))) |
| 1913 | |
| 1914 | /** |
| 1915 | * Runs a summary effect when the sink starts and again when it completes. |
no test coverage detected