lengthIs
方法(或属性)属于 scala.collection.immutable.Stream.Empty
对象(object),其相关用法说明如下。
用法:
@inline
final def lengthIs: SizeCompareOps
返回一个值类,其中包含用于将此序列的长度与测试值进行比较的操作。
这些操作是根据 lengthCompare(Int)
实现的,并允许以下更具可读性的用法:
this.lengthIs < len // this.lengthCompare(len) < 0
this.lengthIs <= len // this.lengthCompare(len) <= 0
this.lengthIs == len // this.lengthCompare(len) == 0
this.lengthIs != len // this.lengthCompare(len) != 0
this.lengthIs >= len // this.lengthCompare(len) >= 0
this.lengthIs > len // this.lengthCompare(len) > 0
继承自:
- collection.SeqOps.lengthIs
源码:
- Seq.scala
相关用法
- Scala Empty.lazyZip用法及代码示例
- Scala Empty.inits用法及代码示例
- Scala Empty.unzip用法及代码示例
- Scala Empty.permutations用法及代码示例
- Scala Empty.sizeIs用法及代码示例
- Scala Empty.addString用法及代码示例
- Scala Empty.scanRight用法及代码示例
- Scala Empty.groupBy用法及代码示例
- Scala Empty.sortBy用法及代码示例
- Scala Empty.unzip3用法及代码示例
- Scala Empty.combinations用法及代码示例
- Scala Empty.collectFirst用法及代码示例
- Scala Empty.elementWise用法及代码示例
- Scala Empty.transpose用法及代码示例
- Scala Empty.mkString用法及代码示例
- Scala Empty.sizeCompare用法及代码示例
- Scala Empty.groupMapReduce用法及代码示例
- Scala Empty.groupMap用法及代码示例
- Scala Empty.applyOrElse用法及代码示例
- Scala Empty.appended用法及代码示例
- Scala Empty.runWith用法及代码示例
- Scala Empty.sortWith用法及代码示例
- Scala Empty.tails用法及代码示例
- Scala Empty.sliding用法及代码示例
- Scala Empty.partitionMap用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Empty.lengthIs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。