(elements: Iterable<A>)
| 104 | return withState(this.state, randomIntegerBetween(low, high)) |
| 105 | } |
| 106 | shuffle<A>(elements: Iterable<A>): STM.STM<Array<A>> { |
| 107 | return shuffleWith(elements, (n) => this.nextIntBetween(0, n)) |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /** @internal */ |
nothing calls this directly
no test coverage detected