sortBy
方法(或屬性)屬於 scala.collection.IndexedSeqView
特性(trait),其相關用法說明如下。
用法:
def sortBy[B](f: A => B)(implicit ord: Ordering[B]): View[A]
根據使用轉換函數轉換隱式給定 Ordering 產生的 Ordering 對該序列進行排序。
注意:對於無限大小的集合不會終止。
注意:即使應用於視圖或惰性集合,它也會始終強製元素。
排序是穩定的。也就是說,相等的元素(由 ord.compare
確定)在排序序列中以與原始元素相同的順序出現。
類型參數:
- B
轉換
f
的目標類型,以及定義排序ord
的類型.
值參數:
- f
轉換函數將元素映射到其他域
B
.- ord
域
B
上假定的排序.
返回:
由該序列的元素組成的序列,按照順序排序 where
x < y
iford.lt(f(x), f(y))
.也可以看看:
例子:
val words = "The quick brown fox jumped over the lazy dog".split(' ') // this works because scala.Ordering will implicitly provide an Ordering[Tuple2[Int, Char]] words.sortBy(x => (x.length, x.head)) res0: Array[String] = Array(The, dog, fox, the, lazy, over, brown, quick, jumped)
繼承自:
- collection.SeqOps.sortBy
源碼:
- Seq.scala
相關用法
- Scala IndexedSeqView.sortWith用法及代碼示例
- Scala IndexedSeqView.sizeIs用法及代碼示例
- Scala IndexedSeqView.sliding用法及代碼示例
- Scala IndexedSeqView.scanRight用法及代碼示例
- Scala IndexedSeqView.partitionMap用法及代碼示例
- Scala IndexedSeqView.groupMap用法及代碼示例
- Scala IndexedSeqView.groupMapReduce用法及代碼示例
- Scala IndexedSeqView.combinations用法及代碼示例
- Scala IndexedSeqView.permutations用法及代碼示例
- Scala IndexedSeqView.collectFirst用法及代碼示例
- Scala IndexedSeqView.groupBy用法及代碼示例
- Scala IndexedSeqView.unzip用法及代碼示例
- Scala IndexedSeqView.unzip3用法及代碼示例
- Scala IndexedSeqView.inits用法及代碼示例
- Scala IndexedSeqView.tails用法及代碼示例
- Scala IndexedSeqView.mkString用法及代碼示例
- Scala IndexedSeqView.lengthIs用法及代碼示例
- Scala IndexedSeqView.lazyZip用法及代碼示例
- Scala IndexedSeqView.transpose用法及代碼示例
- Scala IndexedSeqView.addString用法及代碼示例
- Scala IndexedSeqOps.lengthIs用法及代碼示例
- Scala IndexedSeq.collectFirst用法及代碼示例
- Scala IndexedSeq.elementWise用法及代碼示例
- Scala IndexedSeqOps.unzip用法及代碼示例
- Scala IndexedSeqOps.appended用法及代碼示例
注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 IndexedSeqView.sortBy。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。