shuffle function
Implementation
@Deprecated("Use inbuilt List.shuffle() instead")
List shuffle(List collection) {
collection.shuffle();
return collection;
}
@Deprecated("Use inbuilt List.shuffle() instead")
List shuffle(List collection) {
collection.shuffle();
return collection;
}