IterableExtension
Utilities that extend the functionality of Iterable.
Functions
Link copied to clipboard
Returns a random element of the Iterable using the provided randomGenerator.
Link copied to clipboard
fun <R> Iterable<R>.shuffled(randomGenerator: RandomGenerator): Iterable<R>
Content copied to clipboard
Fisher–Yates shuffle algorithm using Apache random number generator. More information on Wikipedia.