combinations
方法(或屬性)屬於 scala.collection.IndexedSeqView.Drop
類(class),其相關用法說明如下。
用法:
def combinations(n: Int): Iterator[View[A]]
迭代組合。長度為n
的_combination_ 是原始序列的子序列,其中元素按順序排列。因此,"xy"
和 "yy"
都是 "xyy"
的長度為 2 的組合,但 "yx"
不是。如果生成相同子序列的方法不止一種,則隻會返回一種。
例如,"xyyy"
有三種不同的方式來生成"xy"
,具體取決於選擇的是第一個、第二個還是第三個"y"
。但是,由於所有內容都是相同的,因此隻會選擇一個。三者中的哪一個是未定義的實現細節。
注意:即使應用於視圖或惰性集合,它也會始終強製元素。
返回:
遍曆此序列的可能 n-element 組合的迭代器。
例子:
-
"abbbc".combinations(2) = Iterator(ab, ac, bb, bc)
繼承自:
- collection.SeqOps.combinations
源碼:
- Seq.scala
相關用法
- Scala Drop.collectFirst用法及代碼示例
- Scala Drop.inits用法及代碼示例
- Scala Drop.groupBy用法及代碼示例
- Scala Drop.lazyZip用法及代碼示例
- Scala Drop.unzip3用法及代碼示例
- Scala Drop.sizeCompare用法及代碼示例
- Scala Drop.groupMapReduce用法及代碼示例
- Scala Drop.scanRight用法及代碼示例
- Scala Drop.lengthIs用法及代碼示例
- Scala Drop.permutations用法及代碼示例
- Scala Drop.sortWith用法及代碼示例
- Scala Drop.tails用法及代碼示例
- Scala Drop.transpose用法及代碼示例
- Scala Drop.addString用法及代碼示例
- Scala Drop.partitionMap用法及代碼示例
- Scala Drop.lengthCompare用法及代碼示例
- Scala Drop.unzip用法及代碼示例
- Scala Drop.sizeIs用法及代碼示例
- Scala Drop.groupMap用法及代碼示例
- Scala Drop.mkString用法及代碼示例
- Scala Drop.sliding用法及代碼示例
- Scala Drop.sortBy用法及代碼示例
- Scala DropRight.permutations用法及代碼示例
- Scala DropRight.lengthIs用法及代碼示例
- Scala DropWhile.partitionMap用法及代碼示例
注:本文由純淨天空篩選整理自scala-lang.org大神的英文原創作品 Drop.combinations。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。