(self: FiberHandle<A, E>)
| 301 | * @categories combinators |
| 302 | */ |
| 303 | export const get = <A, E>(self: FiberHandle<A, E>): Effect.Effect<Fiber.RuntimeFiber<A, E>, NoSuchElementException> => |
| 304 | Effect.suspend(() => unsafeGet(self)) |
| 305 | |
| 306 | /** |
| 307 | * @since 2.0.0 |
nothing calls this directly
no test coverage detected