permutations
方法(或属性)属于 scala.collection.IndexedSeqView.DropRight
类(class),其相关用法说明如下。
用法:
def permutations: Iterator[View[A]]
迭代不同的排列。
注意:即使应用于视图或惰性集合,它也会始终强制元素。
返回:
遍历此序列的不同排列的迭代器。
例子:
-
"abb".permutations = Iterator(abb, bab, bba)
继承自:
- collection.SeqOps.permutations
源码:
- Seq.scala
相关用法
- Scala DropRight.partitionMap用法及代码示例
- Scala DropRight.lengthIs用法及代码示例
- Scala DropRight.scanRight用法及代码示例
- Scala DropRight.unzip3用法及代码示例
- Scala DropRight.transpose用法及代码示例
- Scala DropRight.collectFirst用法及代码示例
- Scala DropRight.groupMap用法及代码示例
- Scala DropRight.sizeIs用法及代码示例
- Scala DropRight.inits用法及代码示例
- Scala DropRight.sliding用法及代码示例
- Scala DropRight.sizeCompare用法及代码示例
- Scala DropRight.unzip用法及代码示例
- Scala DropRight.mkString用法及代码示例
- Scala DropRight.combinations用法及代码示例
- Scala DropRight.tails用法及代码示例
- Scala DropRight.lengthCompare用法及代码示例
- Scala DropRight.groupBy用法及代码示例
- Scala DropRight.addString用法及代码示例
- Scala DropRight.groupMapReduce用法及代码示例
- Scala DropRight.sortBy用法及代码示例
- Scala DropRight.sortWith用法及代码示例
- Scala DropRight.lazyZip用法及代码示例
- Scala Drop.inits用法及代码示例
- Scala Drop.groupBy用法及代码示例
- Scala DropWhile.partitionMap用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 DropRight.permutations。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。