Like this? ``` inline fun <reified T> enumVa...
# random
m
Like this?
Copy code
inline fun <reified T> enumValuesWithCountShuffled(random: Random) where T : Enum<T>, T : WithCount
        = enumValues<T>().flatMap { v -> List(v.count) { v } }.shuffled(random)