( f: (context: Context.Context<R>) => Z )
| 684 | |
| 685 | /** @internal */ |
| 686 | export const contextWith = <R, Z>( |
| 687 | f: (context: Context.Context<R>) => Z |
| 688 | ): Sink.Sink<Z, unknown, never, never, R> => pipe(context<R>(), map(f)) |
| 689 | |
| 690 | /** @internal */ |
| 691 | export const contextWithEffect = <R0, A, E, R>( |