(self: FiberRef.FiberRef<A>)
| 1716 | |
| 1717 | /* @internal */ |
| 1718 | export const fiberRefGet = <A>(self: FiberRef.FiberRef<A>): Effect.Effect<A> => |
| 1719 | withFiberRuntime((fiber) => exitSucceed(fiber.getFiberRef(self))) |
| 1720 | |
| 1721 | /* @internal */ |
| 1722 | export const fiberRefGetAndSet = dual< |
no test coverage detected