如何将一个部分功能转换为另一个功能?

时间:2018-02-05 08:00:14

标签: scala partialfunction

假设我有部分功能parf

val parf: PartialFunction[Int, String] = { case 0 => "!!!" }

现在我还有case class A(x: Int)我需要一个功能来将PartialFunction[Int, String]转换为PartialFunction[A, String]

def foo(pf: PartialFunction[Int, String]): PartialFunction[A, String] = ???

例如,foo(parf)应该返回{case A(0) => "!!!" }。你会怎么写函数foo

3 个答案:

答案 0 :(得分:4)

要保持正确的功能,您需要检查是否在您要传递的参数上定义了内部部分功能:

trait Extractor[A, B] {
  def unapply(a: A): Option[B]
}

object Extractor {
  implicit def partialFunctionAsExtractor[A, B](pf: PartialFunction[A, B]): Extractor[A, B] =
    new Extractor[A, B] {
      def unapply(a: A) = if (pf.isDefinedAt(a)) Some(pf(a)) else None
    }
}

def foo2(pf: Extractor[Int, String]): PartialFunction[A, String] = {
    case A(pf(str)) => str
}

foo2(parf) // implicit conversion magic

如果您打算在更大范围内执行此操作,您可能希望将部分函数转换为提取器对象,因此可以使用更好的语法直接在模式匹配中使用它:

npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080

答案 1 :(得分:3)

我看不出让你感到困惑的是什么?您只需要从Int中匹配提取A,然后让PF按照其想要的行为进行操作。

scala> case class A(x: Int)
// defined class A

scala> val parf: PartialFunction[Int, String] = { case 0 => "!!!" }
// parf: PartialFunction[Int,String] = <function1>

scala> def foo(pf: PartialFunction[Int, String]): PartialFunction[A, String] = { 
     |   case A(x) if pf.isDefinedAt(x) => pf(x)
     | }   
// foo: (pf: PartialFunction[Int,String])PartialFunction[A,String]

scala> val parfA = foo(parf)
// parfA: PartialFunction[A,String] = <function1>

scala> parfA(A(0))
//res0: String = !!!

scala> parfA(A(1))
// scala.MatchError: A(1) (of class A)
//   at scala.PartialFunction$$anon$1.apply(PartialFunction.scala:254)
//   at scala.PartialFunction$$anon$1.apply(PartialFunction.scala:252)
//   at $anonfun$1.applyOrElse(<console>:11)
//   at $anonfun$1.applyOrElse(<console>:11)
//   at scala.runtime.AbstractPartialFunction.apply(AbstractPartialFunction.scala:34)
//   at $anonfun$foo$1.applyOrElse(<console>:13)
//   at $anonfun$foo$1.applyOrElse(<console>:13)
//   at scala.runtime.AbstractPartialFunction.apply(AbstractPartialFunction.scala:34)
//   ... 28 elided

答案 2 :(得分:1)

@Oleg Pyzhcov已经提供了一个很好的解决方案。另一种方法是创建一个在A(0)定义的PartialFunction [A,Int],并使用public func factorial(_ N: Double) -> Double { var mult = N var retVal: Double = 1.0 while mult > 0.0 { retVal *= mult mult -= 1.0 } return retVal } 将其与andThen链接起来:

parf