(min: number, max: number)
| 127 | |
| 128 | /** @internal */ |
| 129 | export const nextIntBetween = (min: number, max: number): Effect.Effect<number> => |
| 130 | randomWith((random) => random.nextIntBetween(min, max)) |
| 131 | |
| 132 | /** @internal */ |
| 133 | export const shuffle = <A>(elements: Iterable<A>): Effect.Effect<Chunk.Chunk<A>> => |
nothing calls this directly
no test coverage detected
searching dependent graphs…