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