我有这样定义的基本类型池:
sealed trait Section
final case class Header(...) extends Section
final case class Customer(...) extends Section
final case class Supplier(...) extends Section
final case class Tech(...) extends Section
我想介绍一些由这个池中的类型组成的案例类,如下所示:
final case class ContractViewPartners(customer: Customer, supplier: Supplier)
final case class ContractView(header: Header, partners: ContractViewPartners, tech: Tech)
由于它们将在通过使用此处HList
描述的方法转换为 s实现的特征生成器中大量使用,我想确保呈现类型的每个字段都是
Section
亚型HList
Section
亚型_- 记录可呈现
HList
的Section
子类型
我为这种情况定义了简单的编译时检查器:
object traverseView extends Poly1 {
implicit def caseSection[S <: Section] = at[S](_ => ())
implicit def caseSectionList[L <: HList]
(implicit evt: ToTraversable.Aux[L, List, Section]) = at[L](_ => ())
implicit def caseRecord[R, L <: HList]
(implicit lgen: LabelledGeneric.Aux[R, L],
trav: ToTraversable.Aux[L, List, Section]) = at[R](_ => ())
}
private def contractViewIsMultiSection(v: ContractView) = {
val gen = LabelledGeneric[ContractView].to(v)
gen map traverseView
}
但它失败了(删除了包名)
找不到参数映射器的隐式值: Mapper[traverseView.type,::[Header with KeyTag[Symbol with Tagged[String("header")],Header],::[ContractViewPartners with KeyTag[Symbol with Tagged[String( "partners")],ContractViewPartners],::[Tech with KeyTag[Symbol with Tagged[String("tech")],Tech],HNil]]]]
如果我从它的工作中删除partners
部分ContractView
并且如果我尝试解决implicits
它们ContractViewPartners
也会被发现。
再次在写问题时,我找到了添加.values
这样的解决方案
private def contractViewIsMultiSection(v: ContractView) = {
val gen = LabelledGeneric[ContractView].to(v)
.values //!!!
gen map traverseView
}
会不会是那种类型with KeyTag[...]
不能作为LabelledGeneric
转换源正常工作?