Package: effect
Module: ScopedRef
Retrieves the current value of the scoped reference effectfully.
When to use
Use to read the value currently stored in a ScopedRef inside an Effect
workflow.
See
getUnsafe for reading the current value synchronously when an unsafe read is acceptableSignature
declare const get: <A>(self: ScopedRef<A>) => Effect.Effect<A>
Since v2.0.0