(min: number, max: number)
| 139 | * @since 4.0.0 |
| 140 | */ |
| 141 | export const nextBetween = (min: number, max: number): Effect.Effect<number> => |
| 142 | randomWith((r) => r.nextDoubleUnsafe() * (max - min) + min) |
| 143 | |
| 144 | /** |
| 145 | * Generates a random integer between `min` and `max`. |
nothing calls this directly
no test coverage detected