sizeIs
方法(或属性)属于sys.SystemProperties类(class),其相关用法说明如下。
用法:
@inline
final def sizeIs: SizeCompareOps
返回一个值类,其中包含用于将此可迭代集合的大小与测试值进行比较的操作。
这些操作是根据 sizeCompare(Int)
实现的,并允许以下更具可读性的用法:
this.sizeIs < size // this.sizeCompare(size) < 0
this.sizeIs <= size // this.sizeCompare(size) <= 0
this.sizeIs == size // this.sizeCompare(size) == 0
this.sizeIs != size // this.sizeCompare(size) != 0
this.sizeIs >= size // this.sizeCompare(size) >= 0
this.sizeIs > size // this.sizeCompare(size) > 0
相关用法
- Scala SystemProperties.sizeCompare用法及代码示例
- Scala SystemProperties.scanRight用法及代码示例
- Scala SystemProperties.sliding用法及代码示例
- Scala SystemProperties.addString用法及代码示例
- Scala SystemProperties.tails用法及代码示例
- Scala SystemProperties.transpose用法及代码示例
- Scala SystemProperties.equals用法及代码示例
- Scala SystemProperties.unzip3用法及代码示例
- Scala SystemProperties.elementWise用法及代码示例
- Scala SystemProperties.groupBy用法及代码示例
- Scala SystemProperties.lazyZip用法及代码示例
- Scala SystemProperties.runWith用法及代码示例
- Scala SystemProperties.groupMapReduce用法及代码示例
- Scala SystemProperties.collectFirst用法及代码示例
- Scala SystemProperties.groupMap用法及代码示例
- Scala SystemProperties.unzip用法及代码示例
- Scala SystemProperties.inits用法及代码示例
- Scala SystemProperties.partitionMap用法及代码示例
- Scala SystemProperties.mkString用法及代码示例
- Scala Symbol.on用法及代码示例
- Scala Symbol.orElseBy用法及代码示例
- Scala SymbolOrdering.orElseBy用法及代码示例
- Scala SymbolOrdering.on用法及代码示例
- Scala SymbolModule.spliceOwner用法及代码示例
- Scala SymbolOrdering.orElse用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 SystemProperties.sizeIs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。