( f: (environment: Context.Context<R0>) => STM.STM<A, E, R> )
| 418 | |
| 419 | /** @internal */ |
| 420 | export const contextWithSTM = <R0, A, E, R>( |
| 421 | f: (environment: Context.Context<R0>) => STM.STM<A, E, R> |
| 422 | ): STM.STM<A, E, R0 | R> => flatMap(context<R0>(), f) |
| 423 | |
| 424 | /** @internal */ |
| 425 | export class STMDriver<in out R, out E, out A> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…