( tag: Context.Tag<I, S>, f: (service: Types.NoInfer<S>) => Effect.Effect<Z, E, R> )
| 1752 | |
| 1753 | /** @internal */ |
| 1754 | export const serviceWithEffect = <I, S, R, E, Z>( |
| 1755 | tag: Context.Tag<I, S>, |
| 1756 | f: (service: Types.NoInfer<S>) => Effect.Effect<Z, E, R> |
| 1757 | ): Sink.Sink<Z, unknown, never, E, R | I> => fromEffect(Effect.flatMap(tag, f)) |
| 1758 | |
| 1759 | /** @internal */ |
| 1760 | export const serviceWithSink = <I, S, R, E, In, L, Z>( |
nothing calls this directly
no test coverage detected