我如何传递一些HList
作为参数?所以我可以这样做:
def HFunc[F, S, T](hlist: F :: S :: T :: HNil) {
// here is some code
}
HFunc(HList(1, true, "String")) // it works perfect
但如果我有一个很长的清单,而且我不知道它,我怎么能对它做一些操作? 我如何通过论证而不是松散其类型?
答案 0 :(得分:8)
这取决于您的用例。
HList
对于类型级代码非常有用,因此您不仅要将HList
传递给您的方法,还要传递给所有必要的信息:
def hFunc[L <: HList](hlist: L)(implicit h1: Helper1[L], h2: Helper2[L]) {
// here is some code
}
例如,如果您希望reverse
Hlist
和map
结果,则应使用Mapper
和Reverse
,如下所示:
import shapeless._, shapeless.ops.hlist.{Reverse, Mapper}
object negate extends Poly1 {
implicit def caseInt = at[Int]{i => -i}
implicit def caseBool = at[Boolean]{b => !b}
implicit def caseString = at[String]{s => "not " + s}
}
def hFunc[L <: HList, Rev <: HList](hlist: L)(
implicit rev: Reverse[L]{ type Out = Rev },
map: Mapper[negate.type, Rev]): map.Out =
map(rev(hlist)) // or hlist.reverse.map(negate)
用法:
hFunc(HList(1, true, "String"))
//String :: Boolean :: Int :: HNil = not String :: false :: -1 :: HNil