(elements: Iterable<A>)
| 131 | |
| 132 | /** @internal */ |
| 133 | export const shuffle = <A>(elements: Iterable<A>): Effect.Effect<Chunk.Chunk<A>> => |
| 134 | randomWith((random) => random.shuffle(elements)) |
| 135 | |
| 136 | /** @internal */ |
| 137 | export const choice = <Self extends Iterable<unknown>>( |
nothing calls this directly
no test coverage detected
searching dependent graphs…