(evaluate: LazyArg<Layer<A, E, R>>)
| 1135 | * @since 2.0.0 |
| 1136 | */ |
| 1137 | export const suspend = <A, E, R>(evaluate: LazyArg<Layer<A, E, R>>): Layer<A, E, R> => |
| 1138 | fromBuildMemo((memoMap, scope) => internalEffect.suspend(() => evaluate().build(memoMap, scope))) |
| 1139 | |
| 1140 | /** |
| 1141 | * Unwraps a `Layer` from an `Effect`, flattening the nested structure. |
nothing calls this directly
no test coverage detected