Package: effect
Module: ScopedRef
Retrieves the current value of the scoped reference synchronously.
When to use
Use when you need immediate synchronous access to the current ScopedRef
value and can guarantee that reading outside the Effect API is safe.
See
get for Effect-wrapped access in Effect programsSignature
declare const getUnsafe: <A>(self: ScopedRef<A>) => A
Since v4.0.0