假设我有容器标记
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
)
答案 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