( f: (descriptor: FiberId.Runtime) => Effect.Effect<A, E, R> )
| 739 | |
| 740 | /* @internal */ |
| 741 | export const fiberIdWith = <A, E, R>( |
| 742 | f: (descriptor: FiberId.Runtime) => Effect.Effect<A, E, R> |
| 743 | ): Effect.Effect<A, E, R> => withFiberRuntime((state) => f(state.id())) |
| 744 | |
| 745 | /* @internal */ |
| 746 | export const flatMap = dual< |
nothing calls this directly
no test coverage detected