0

假设我们有以下方法

def func[T <: HList](hlist: T, poly: Poly)
    (implicit mapper : Mapper[poly.type, T]): Unit = {
    hlist map poly 
}

和定制的聚

object f extends (Set ~>> String) {
    def apply[T](s : Set[T]) = s.head.toString
}

所以我可以func像这样使用它

func(Set(1, 2) :: Set(3, 4) :: HNil, f)

在我的代码中,我有少量的波利和大量的func调用。为此,我尝试转移poly: Poly到隐式参数并得到预期的消息

illegal dependent method type: parameter appears in the type of another parameter in the same section or an earlier one

如何更改或扩展poly: Poly参数以避免此错误(我需要保留类型签名func[T <: HList](...))?

4

1 回答 1

1

也许您可以使用带有apply方法的类来使用“部分应用”技巧:

import shapeless._
import ops.hlist.Mapper

final class PartFunc[P <: Poly](val poly: P) {
  def apply[L <: HList](l: L)(implicit mapper: Mapper[poly.type, L]): mapper.Out =
    l map poly
}

def func[P <: Poly](poly: P) = new PartFunc(poly)

用你的 poly f

val ff = func(f)
ff(Set(1, 2) :: Set(3, 4) :: HNil)          // 1 :: 3 :: HNil
ff(Set("a", "b") :: Set("c", "d") :: HNil)  // a :: c :: HNil
于 2016-06-27T12:15:52.093 回答