Following a simple example at http://www.simplyscala.com/ I get:
scala> val lst=List(1,7,2,8,5,6,3,9,14,12,4,10)
lst: List[Int] = List(1, 7, 2, 8, 5, 6, 3, 9, 14, 12, 4, 10)
scala> lst.sort(_>_)
<console>:9: error: value sort is not a member of List[Int]
lst.sort(_>_)
What is wrong? Thanks!
SimplyScala wasn't updated for a long long time: .sort was deprecated in 2.8.0 and cut out in latter versions. Instead you have to use sortWith
method.
sort
is actually not defined in class List
. You should use sortWith
in your case.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With