假设我们有以下方法
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](...)
)?