/** * @tsplus static effect/core/io/Random.Ops shuffle */ export function shuffle(collection: Collection): Effect> { return Effect.randomWith((random) => random.shuffle(collection)) }