I'd personally make it: ``` fun <T> List&lt...
# announcements
k
I'd personally make it:
Copy code
fun <T> List<T>.shuffled(): List<T> = toMutableList().also { Collections.shuffle(it) }