(this: any)
| 2115 | return Context.add(s, service, next) |
| 2116 | }) |
| 2117 | ) |
| 2118 | |
| 2119 | /** @internal */ |
| 2120 | export const updateServiceScoped = <I, A>( |
| 2121 | service: Context.Key<I, A>, |
| 2122 | update: (value: A) => A, |
| 2123 | options?: { |
| 2124 | readonly reset?: ((original: A, updated: A, current: A) => A) | undefined |
| 2125 | } | undefined |
| 2126 | ): Effect.Effect<void, never, I | Scope.Scope> => |
no test coverage detected
searching dependent graphs…