(elements: Iterable<A>)
| 137 | |
| 138 | /** @internal */ |
| 139 | export const shuffle = <A>(elements: Iterable<A>): STM.STM<Array<A>, never, TRandom.TRandom> => |
| 140 | core.flatMap(Tag, (random) => random.shuffle(elements)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…