runWith
方法(或属性)属于 scala.collection.immutable.Range.Exclusive
类(class),其相关用法说明如下。
用法:
def runWith[U](action: Int => 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 Exclusive.combinations用法及代码示例
- Scala Exclusive.tails用法及代码示例
- Scala Exclusive.sizeIs用法及代码示例
- Scala Exclusive.sortBy用法及代码示例
- Scala Exclusive.scanRight用法及代码示例
- Scala Exclusive.addString用法及代码示例
- Scala Exclusive.groupBy用法及代码示例
- Scala Exclusive.transpose用法及代码示例
- Scala Exclusive.collectFirst用法及代码示例
- Scala Exclusive.lengthIs用法及代码示例
- Scala Exclusive.inits用法及代码示例
- Scala Exclusive.mkString用法及代码示例
- Scala Exclusive.elementWise用法及代码示例
- Scala Exclusive.groupMap用法及代码示例
- Scala Exclusive.lazyZip用法及代码示例
- Scala Exclusive.groupMapReduce用法及代码示例
- Scala Exclusive.permutations用法及代码示例
- Scala Exclusive.sliding用法及代码示例
- Scala Exclusive.applyOrElse用法及代码示例
- Scala Exclusive.sortWith用法及代码示例
- Scala Exception.handling用法及代码示例
- Scala Expr.unapply用法及代码示例
- Scala ExtraImplicits.infixOrderingOps用法及代码示例
- Scala Exprs.unapply用法及代码示例
- Scala ExtraImplicits.infixNumericOps用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Exclusive.runWith。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。