(f: (random: Random.Random) => Effect.Effect<A, E, R>)
| 100 | |
| 101 | /** @internal */ |
| 102 | export const randomWith = <A, E, R>(f: (random: Random.Random) => Effect.Effect<A, E, R>): Effect.Effect<A, E, R> => |
| 103 | defaultServicesWith((services) => f(services.unsafeMap.get(random.randomTag.key))) |
| 104 | |
| 105 | /** @internal */ |
| 106 | export const withRandom = dual< |
no test coverage detected