这是对my previous question的跟进。
所以,我正在尝试计算选项HList的(种类)powerset。基本上,我想将HList解释为一个集合,在这种情况下,元素的Option值告诉我它属于集合。
我能够通过以下代码完成我需要的工作:
object combine1 extends Poly2{
implicit def optionA[A,B <: HList] : Case.Aux[Option[A], List[B], List[Option[A] :: B]] = at{(a, hls) =>
val x: List[Option[A] :: B] = hls.flatMap{ hl => a match {
case Some(_) =>
List(
None :: hl,
a :: hl,
)
case None =>
List(None :: hl)
}
}
x
}
implicit def someA[A,B <: HList] : Case.Aux[Some[A], List[B], List[Option[A] :: B]] = at{(a, hls) =>
val x: List[Option[A] :: B] = hls.flatMap{ hl =>
List(
None :: hl,
a :: hl
)
}
x
}
implicit val none : Case.Aux[None.type, List[HList], List[HList]] = at{(_, hls) =>
hls.map(hl => None :: hl)
}
}
所有这些都适用于foldRight
:
val h1 = Some(2) :: none[BigDecimal] :: Some("b") :: HNil
h1.foldRight(List(HNil))(combine1).foreach(println)
打印:
// None :: None :: None :: HNil
// Some(2) :: None :: None :: HNil
// None :: None :: Some(b) :: HNil
// Some(2) :: None :: Some(b) :: HNil
但是, foldLeft
不起作用。那是为什么?
h1.foldLeft(List(HNil))(combine1).foreach(println)
结果如下:
Error:(72, 26) could not find implicit value for parameter folder: shapeless.ops.hlist.LeftFolder[Some[Int] :: Some[Unit] :: Some[String] :: shapeless.HNil,List[shapeless.HNil.type],swaps.tec.util.Experiment.combine1.type]
我错过了什么?
N.B。我知道要使用foldLeft
我最终需要撤消每个HList
以获得与foldRight
相同的结果,但是现在我只对实际左折叠初始{感兴趣} {1}}。一旦得到输出,我将修复输出:)
答案 0 :(得分:2)
FoldLeft以不同的顺序接受参数。您应该定义Case.Aux[List[B], Option[A], ...]
。