リストのドキュメントによると
def sorted[B >: A](implicit ord: math.Ordering[B]): List[A]
Sorts this list according to an Ordering.
def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): List[A]
Sorts this List according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.
1 つをいつ使用し、もう 1 つをいつ使用しますか? 一方がカバーしていないシナリオをカバーしていますか?