(c: C)
| 3018 | |
| 3019 | /* @internal */ |
| 3020 | export const withClockScoped = <C extends Clock.Clock>(c: C) => |
| 3021 | fiberRefLocallyScopedWith(defaultServices.currentServices, Context.add(clock.clockTag, c)) |
| 3022 | |
| 3023 | /* @internal */ |
| 3024 | export const withRandomScoped = <A extends Random.Random>(value: A) => |
nothing calls this directly
no test coverage detected