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