(value: A)
| 44 | |
| 45 | /** @internal */ |
| 46 | export const make = <A>(value: A): Effect.Effect<Ref.Ref<A>> => core.sync(() => unsafeMake(value)) |
| 47 | |
| 48 | /** @internal */ |
| 49 | export const get = <A>(self: Ref.Ref<A>) => self.get |
nothing calls this directly
no test coverage detected