runWith
方法(或属性)属于 scala.collection.immutable.NumericRange.Inclusive
类(class),其相关用法说明如下。
用法:
def runWith[U](action: T => U): Int => Boolean
将此部分函数与一个作用函数组合在一起,该作用函数应用于此部分函数的结果。调用动作函数只是为了它的副作用;它的结果被忽略。
请注意,表达式pf.runWith(action)(x)
等价于
if(pf isDefinedAt x) { action(pf(x)); true } else false
除了 runWith
是通过 applyOrElse
实现的,因此可能更有效。使用 runWith
可以避免对模式匹配器和部分函数文字的保护进行双重评估。
值参数:
- action
动作函数
返回:
将参数
x
映射到isDefinedAt(x)
的函数.结果函数运行action(this(x))
,其中定义了this
。也可以看看:
applyOrElse
.继承自:
- PartialFunction.runWith
源码:
- PartialFunction.scala
相关用法
- Scala Inclusive.inits用法及代码示例
- Scala Inclusive.transpose用法及代码示例
- Scala Inclusive.permutations用法及代码示例
- Scala Inclusive.addString用法及代码示例
- Scala Inclusive.groupBy用法及代码示例
- Scala Inclusive.mkString用法及代码示例
- Scala Inclusive.sortBy用法及代码示例
- Scala Inclusive.combinations用法及代码示例
- Scala Inclusive.collectFirst用法及代码示例
- Scala Inclusive.applyOrElse用法及代码示例
- Scala Inclusive.tails用法及代码示例
- Scala Inclusive.elementWise用法及代码示例
- Scala Inclusive.lengthIs用法及代码示例
- Scala Inclusive.sliding用法及代码示例
- Scala Inclusive.lazyZip用法及代码示例
- Scala Inclusive.sizeIs用法及代码示例
- Scala Inclusive.groupMap用法及代码示例
- Scala Inclusive.sortWith用法及代码示例
- Scala Inclusive.groupMapReduce用法及代码示例
- Scala Inclusive.scanRight用法及代码示例
- Scala IntMap.groupMap用法及代码示例
- Scala IndexedSeqOps.lengthIs用法及代码示例
- Scala Int.>>用法及代码示例
- Scala Int toInt()用法及代码示例
- Scala IndexedSeq.collectFirst用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Inclusive.runWith。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。