(evaluate: LazyArg<Context.Context<A>>)
| 971 | * @since 2.0.0 |
| 972 | */ |
| 973 | export const syncContext = <A>(evaluate: LazyArg<Context.Context<A>>): Layer<A> => |
| 974 | fromBuildMemo(constant(internalEffect.sync(evaluate))) |
| 975 | |
| 976 | /** |
| 977 | * Constructs a layer from an effect that produces a single service. |
no test coverage detected