(self: ScopedRef.ScopedRef<A>)
| 36 | |
| 37 | /** @internal */ |
| 38 | const close = <A>(self: ScopedRef.ScopedRef<A>): Effect.Effect<void> => |
| 39 | core.flatMap(ref.get(self.ref), (tuple) => tuple[0].close(core.exitVoid)) |
| 40 | |
| 41 | /** @internal */ |
| 42 | export const fromAcquire = <A, E, R>( |
no test coverage detected