There is something that I can\'t quite understand hope someone can shed some light.. I have Seq[String]
val strDeps: Seq[String] = ...
and
_ expands only to the smallest possible scope.
_
The inner _.reverse part is already interpreted as x => x.reverse therefore the parameter is missing inside sortWith.
_.reverse
x => x.reverse
sortWith