如果您只想检查值,您可以简单地对副产品进行模式匹配,就像对任何其他值一样...
def apply[T <: Coproduct](co: T): Any = co match {
case Inl(MyCaseClass(a, b, c)) => ???
...
}
...但是如果您想比这更精确,例如具有取决于输入的返回类型,或者检查此副产品中的类型以召唤隐含,那么您可以使用编写完全相同的模式匹配表达式一个类型类和几个隐式定义:
trait MyFunction[T <: Coproduct] {
type Out
def apply(co: T): Out
}
object MyFunction {
// case Inl(MyCaseClass(a, b, c)) =>
implicit val case1 = new MyFunction[Inl[MyCaseClass]] {
type Out = Nothing
def apply(co: Inl[MyCaseClass]): Out = ???
}
// ...
}
通常,当您想要迭代所有类型的联积时,您将始终遵循相同的尾递归结构。作为一个函数:
def iterate[T <: Coproduct](co: T): Any = co match {
case Inr(head: Any) => println(v)
case Inl(tail: Coproduct) => iterate(tail)
case CNil => ???
}
或作为“依赖类型函数”:
trait Iterate[T <: Coproduct]
object Iterate {
implicit def caseCNil = new Iterate[CNil] {...}
implicit def caseCCons[H, T <: Coproduct](implicit rec: Iterate[T]) =
new Iterate[H :+: T] {...}
}
例如,您可以使用附加ClassTag
隐式来获取副产品中每种类型的名称:
trait Iterate[T <: Coproduct] { def types: List[String] }
object Iterate {
implicit def caseCNil = new Iterate[CNil] {
def types: List[String] = Nil
}
implicit def caseCCons[H, T <: Coproduct]
(implicit
rec: Iterate[T],
ct: reflect.ClassTag[H]
) =
new Iterate[H :+: T] {
def types: List[String] = ct.runtimeClass.getName :: rec.types
}
}
implicitly[Iterate[Int :+: String :+: CNil]].types // List(int, java.lang.String)
由于 Scala 允许您影响隐式优先级的方式,实际上可以将具有模式匹配的任何递归函数转换为这种“依赖类型函数”模式。这与 Haskell 不同,只有在匹配表达式的调用情况可证明不重叠时才能编写此类函数。