I can see there’s a sorting object, Sorting, with a quicksort method, quickSort, on it.
What would be a code example of using it, sorting an array of object of arbitrary type? It looks like I need to pass in an implementation of the Orderable trait, but I am unsure of the syntax.
Also, I would prefer answers doing this the ‘Scala way’. I know I can just use a Java library.
Sorting.quickSort declares functions for taking an Array of numbers or Strings, but I’m assuming you mean you want to sort a list of objects of your own classes?
The function I think you’re looking at is
Which, if I’m reading this right, means that the objects in the Array must have the
Orderedtrait. So your class must extendOrdered(or must mix it in), and therefore must implement thecomparemethod of that trait.So to rip off an example from the book:
So given an Array[MyClass], then Sorting.quickSort should work.