eine einfache parametrisierte Typ wie class LK[A]
Da kann ichConstructing TypeTags höherer kinded Typen
// or simpler def tagLK[A: TypeTag] = typeTag[LK[A]]
def tagLK[A](implicit tA: TypeTag[A]) = typeTag[LK[A]]
tagLK[Int] == typeTag[LK[Int]] // true
Jetzt schreibe ich möchte ein Analogon für class HK[F[_], A]
schreiben:
def tagHK[F[_], A](implicit ???) = typeTag[HK[F, A]]
// or some other implementation?
tagHK[Option, Int] == typeTag[HK[Option, Int]]
Ist das möglich ? Ich habe versucht,
def tagHK[F[_], A](implicit tF: TypeTag[F[_]], tA: TypeTag[A]) = typeTag[HK[F, A]]
def tagHK[F[_], A](implicit tF: TypeTag[F], tA: TypeTag[A]) = typeTag[HK[F, A]]
aber weder Werke aus den offensichtlichen Gründen (im ersten Fall F[_]
ist der existentielle Typ anstelle des höheren kinded ein, in den zweiten TypeTag[F]
nicht kompilieren).
Ich vermute die Antwort ist "es ist unmöglich", aber wäre sehr glücklich, wenn es nicht ist.
EDIT: Wir verwenden derzeit WeakTypeTag
s wie folgt (etwas vereinfacht):
trait Element[A] {
val tag: WeakTypeTag[A]
// other irrelevant methods
}
// e.g.
def seqElement[A: Element]: Element[Seq[A]] = new Element[Seq[A]] {
val tag = {
implicit val tA = implicitly[Element[A]].tag
weakTypeTag[Seq[A]]
}
}
trait Container[F[_]] {
def lift[A: Element]: Element[F[A]]
// note that the bound is always satisfied, but we pass the
// tag explicitly when this is used
def tag[A: WeakTypeTag]: WeakTypeTag[F[A]]
}
val seqContainer: Container[Seq] = new Container[Seq] {
def lift[A: Element] = seqElement[A]
}
All dies funktioniert gut, wenn wir WeakTypeTag
mit TypeTag
ersetzen. Leider gilt dies nicht:
class Free[F[_]: Container, A: Element]
def freeElement[F[_]: Container, A: Element] {
val tag = {
implicit val tA = implicitly[Element[A]].tag
// we need to get something like TypeTag[F] here
// which could be obtained from the implicit Container[F]
typeTag[Free[F, A]]
}
}
Does diese Hilfe? http://StackOverflow.com/a/17791973/1223622 –
@BenReich Ja, tut es. Vielen Dank! –