List("Steve", "Tom", "John", "Bob").sortWith(_.compareTo(_) < 0) = List("Bob", "John", "Steve", "Tom")
the param of sortWith is:
lt: (A, A) => Boolean
where a function with two params and return a boolean
but compareTo have only one param:
def compareTo(that: A): Int
if compareTo is a function,it have two params.but it's scala,so compareTo is a method,it's have only one param
so why there can use compareTo in sortWith?It seems not accord with the type signature of sortWith
This usage of underscore is known as Placeholder Syntax for Anonymous Functions:
Note each underscore refers to different parameter so for example
expands to
Also expression
_ + _
makes use of point-free syntax as opposed tofor example
so now it should be clearer why expression
_.compareTo(_) < 0
worksAnother way to see this let's type-ascribe the sugared expression