* Generates a cryptographically secure random number between `min` * (inclusive) and `max` (exclusive).
(min: number, max: number)
| 122 | * (inclusive) and `max` (exclusive). |
| 123 | */ |
| 124 | randomBetween(min: number, max: number): Effect.Effect<number> |
| 125 | |
| 126 | /** |
| 127 | * Generates a cryptographically secure random integer between `min` and `max`. |