(f: (environment: Context.Context<R0>) => R)
| 414 | |
| 415 | /** @internal */ |
| 416 | export const contextWith = <R0, R>(f: (environment: Context.Context<R0>) => R): STM.STM<R, never, R0> => |
| 417 | map(context<R0>(), f) |
| 418 | |
| 419 | /** @internal */ |
| 420 | export const contextWithSTM = <R0, A, E, R>( |