tails
方法(或属性)属于 scala.collection.IndexedSeqView.DropRight
类(class),其相关用法说明如下。
用法:
def tails: Iterator[View[A]]
迭代这个可迭代集合的尾部。第一个值将是这个可迭代集合,最后一个值将是一个空的可迭代集合,中间值是 tail
连续应用的结果。
返回:
此可迭代集合的所有尾部的迭代器
例子:
-
List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)
继承自:
- collection.IterableOps.tails
源码:
- Iterable.scala
相关用法
- Scala DropRight.transpose用法及代码示例
- Scala DropRight.permutations用法及代码示例
- Scala DropRight.lengthIs用法及代码示例
- Scala DropRight.scanRight用法及代码示例
- Scala DropRight.unzip3用法及代码示例
- 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.partitionMap用法及代码示例
- 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.tails。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。