()
| 410 | |
| 411 | /** @internal */ |
| 412 | export const context = <R>(): STM.STM<Context.Context<R>, never, R> => |
| 413 | effect<R, Context.Context<R>>((_, __, env) => env) |
| 414 | |
| 415 | /** @internal */ |
| 416 | export const contextWith = <R0, R>(f: (environment: Context.Context<R0>) => R): STM.STM<R, never, R0> => |
no test coverage detected
searching dependent graphs…