Package: effect
Module: SynchronizedRef
Returns an Effect that reads the current value of the SynchronizedRef.
When to use
Use to read the current value of a SynchronizedRef inside an Effect
program without changing it.
See
getUnsafe for synchronous reads when the caller controls safe access outside EffectSignature
declare const get: <A>(self: SynchronizedRef<A>) => Effect.Effect<A>
Since v2.0.0