(evaluate: LazyArg<Context.Context<A>>)
| 1037 | |
| 1038 | /** @internal */ |
| 1039 | export const syncContext = <A>(evaluate: LazyArg<Context.Context<A>>): Layer.Layer<A> => { |
| 1040 | return fromEffectContext(core.sync(evaluate)) |
| 1041 | } |
| 1042 | |
| 1043 | /** @internal */ |
| 1044 | export const tap = dual< |
nothing calls this directly
no test coverage detected