Scala函数中的异构参数

时间:2013-10-28 12:07:37

标签: list scala shapeless heterogeneous hlist

我如何传递一些HList作为参数?所以我可以这样做:

def HFunc[F, S, T](hlist: F :: S :: T :: HNil) {
    // here is some code
}

HFunc(HList(1, true, "String")) // it works perfect

但如果我有一个很长的清单,而且我不知道它,我怎么能对它做一些操作? 我如何通过论证而不是松散其类型?

1 个答案:

答案 0 :(得分:8)

这取决于您的用例。

HList对于类型级代码非常有用,因此您不仅要将HList传递给您的方法,还要传递给所有必要的信息:

def hFunc[L <: HList](hlist: L)(implicit h1: Helper1[L], h2: Helper2[L]) {
    // here is some code
}

例如,如果您希望reverse Hlistmap结果,则应使用MapperReverse,如下所示:

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