HList作为具有简化类型签名的方法的参数

时间:2016-06-29 09:26:39

标签: scala shapeless hlist

假设我有容器标记

case class TypedString[T](value: String)

其中value表示特定类型T的某个ID。

我有两个班级

case class User(id: String)
case class Event(id: String)

我有一个功能可以做一些事情:

def func[L <: HList](l: L)(...) {...}

所以我可以像

一样使用它
func[TypedString[User] :: TypedString[Event] :: HNil](
    TypedString[User]("user id") :: TypedString[Event]("event id") :: HNil
)

(明确保留类型签名对我来说很重要)

问题是:如何更改或扩展func以使类型签名更短(仅保留标记类型),如:

func[User :: Event :: HNil](
    TypedString[User]("user id") :: TypedString[Event]("event id") :: HNil
)

1 个答案:

答案 0 :(得分:2)

shapeless.ops.hlist.Mapped类型类为您提供一个HList L与另一个HList的关系,其中L的元素包含在类型构造函数中。

因为您现在有两种类型,即您要指定的类型L和另一种类型(L包含在TypedString中的元素),我们需要使用相同的技巧在your previous question中使用(因为我们不想一次提供所有参数,因为我们只想指定第一种类型)。

import shapeless._
import ops.hlist.Mapped

def func[L <: HList] = new PartFunc[L]

class PartFunc[L <: HList] {
  def apply[M <: HList](m: M)(implicit mapped: Mapped.Aux[L, TypedString, M]): M = m
}

现在您可以根据需要使用func

func[User :: Event :: HNil](
    TypedString[User]("user id") :: TypedString[Event]("event id") :: HNil
)
// TypedString[User] :: TypedString[Event] :: HNil =
//     TypedString(user id) :: TypedString(event id) :: HNil