( initial: Context.Context<A> )
| 3402 | |
| 3403 | /* @internal */ |
| 3404 | export const fiberRefMakeContext = <A>( |
| 3405 | initial: Context.Context<A> |
| 3406 | ): Effect.Effect<FiberRef.FiberRef<Context.Context<A>>, never, Scope.Scope> => |
| 3407 | fiberRefMakeWith(() => core.fiberRefUnsafeMakeContext(initial)) |
| 3408 | |
| 3409 | /* @internal */ |
| 3410 | export const fiberRefMakeRuntimeFlags = ( |
nothing calls this directly
no test coverage detected