(min: number, max: number)
| 123 | |
| 124 | /** @internal */ |
| 125 | export const nextRange = (min: number, max: number): Effect.Effect<number> => |
| 126 | randomWith((random) => random.nextRange(min, max)) |
| 127 | |
| 128 | /** @internal */ |
| 129 | export const nextIntBetween = (min: number, max: number): Effect.Effect<number> => |
nothing calls this directly
no test coverage detected