我基本上寻找类型类Prepend[A, B]
的反面。
如果我有类似的话:
type A = String :: Int :: HNil
type B = Boolean :: Double :: HNil
val a: A = "a" :: 1 :: HNil
val b: B = false :: 2.1 :: HNil
scala> val ab = a ++ b
ab: shapeless.::[String,shapeless.::[Int,shapeless.::[Boolean,shapeless.::[Double,shapeless.HNil]]]] = a :: 1 :: false :: 2.1 :: HNil
我有HList
a
类型A
和HList
b
类型B
,我可以找到{{1}这样我就可以将它们与prepend: Prepend[A, B]
连接起来。
但如果我有a ++ b
HList
类型ab
,我该如何提取原始prepend.Out
和A
?我似乎无法找到一个能完成这项工作的类型,也许还没有。似乎我需要像B
这样的证人trait Cut[A <: HList, B <: HList, c <: HList]
已经由预先审核的C
创建A
,但我不知道我是怎么做的会产生证人。
非常像:
B
答案 0 :(得分:6)
您可以使用Split
:
import shapeless._, ops.hlist.{ Length, Prepend, Split }
class UndoPrependHelper[A <: HList, B <: HList, C <: HList, N <: Nat] {
def apply(c: C)(implicit split: Split.Aux[C, N, A, B]): (A, B) = split(c)
}
def undoPrepend[A <: HList, B <: HList](implicit
prepend: Prepend[A, B],
length: Length[A]
) = new UndoPrependHelper[A, B, prepend.Out, length.Out]
然后:
scala> type A = Int :: String :: Symbol :: HNil
defined type alias A
scala> type B = List[Int] :: Option[Double] :: HNil
defined type alias B
scala> type C = Int :: String :: Symbol :: List[Int] :: Option[Double] :: HNil
defined type alias C
scala> val a: A = 1 :: "foo" :: 'bar :: HNil
a: A = 1 :: foo :: 'bar :: HNil
scala> val b: B = List(1, 2, 3) :: Option(0.0) :: HNil
b: B = List(1, 2, 3) :: Some(0.0) :: HNil
scala> val c: C = a ++ b
c: C = 1 :: foo :: 'bar :: List(1, 2, 3) :: Some(0.0) :: HNil
scala> val (newA: A, newB: B) = undoPrepend[A, B].apply(c)
newA: A = 1 :: foo :: 'bar :: HNil
newB: B = List(1, 2, 3) :: Some(0.0) :: HNil
我recently added&#34;撤消&#34; Remove
类型类的操作,并且在Prepend
中内置类似内容可能是有意义的。