tails
方法(或属性)属于 scala.collection.immutable.IndexedSeqOps
特性(trait),其相关用法说明如下。
用法:
def tails: Iterator[C]
迭代这个可迭代集合的尾部。第一个值将是这个可迭代集合,最后一个值将是一个空的可迭代集合,中间值是 tail
连续应用的结果。
返回:
此可迭代集合的所有尾部的迭代器
例子:
-
List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)
继承自:
- collection.IterableOps.tails
源码:
- Iterable.scala
相关用法
- Scala IndexedSeqOps.transpose用法及代码示例
- Scala IndexedSeqOps.lengthIs用法及代码示例
- Scala IndexedSeqOps.unzip用法及代码示例
- Scala IndexedSeqOps.appended用法及代码示例
- Scala IndexedSeqOps.sliding用法及代码示例
- Scala IndexedSeqOps.groupBy用法及代码示例
- Scala IndexedSeqOps.sortBy用法及代码示例
- Scala IndexedSeqOps.unzip3用法及代码示例
- Scala IndexedSeqOps.groupMapReduce用法及代码示例
- Scala IndexedSeqOps.combinations用法及代码示例
- Scala IndexedSeqOps.scanRight用法及代码示例
- Scala IndexedSeqOps.inits用法及代码示例
- Scala IndexedSeqOps.mkString用法及代码示例
- Scala IndexedSeqOps.permutations用法及代码示例
- Scala IndexedSeqOps.collectFirst用法及代码示例
- Scala IndexedSeqOps.sortWith用法及代码示例
- Scala IndexedSeqOps.addString用法及代码示例
- Scala IndexedSeqOps.partitionMap用法及代码示例
- Scala IndexedSeqOps.groupMap用法及代码示例
- Scala IndexedSeqOps.sizeIs用法及代码示例
- Scala IndexedSeq.collectFirst用法及代码示例
- Scala IndexedSeqView.sizeIs用法及代码示例
- Scala IndexedSeq.elementWise用法及代码示例
- Scala IndexedSeqView.partitionMap用法及代码示例
- Scala IndexedSeq.lengthIs用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 IndexedSeqOps.tails。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。