I can get a Type
from a TypeTag[A]
by using the tpe
method. But can I also recover the type-tag from a type?
import scala.reflect.runtime.{universe => ru}
import ru.{Type, TypeTag}
def forward[A](implicit tt: TypeTag[A]): Type = tt.tpe
def backward(t: Type): TypeTag[_] = ???
The reason being that I have an API that uses type-tags as keys into a map, but at some point I only have the type and dropped the tag.
It is possible:
import scala.reflect.runtime.universe._
import scala.reflect.api
val mirror = runtimeMirror(getClass.getClassLoader) // whatever mirror you use to obtain the `Type`
def backward[T](tpe: Type): TypeTag[T] =
TypeTag(mirror, new api.TypeCreator {
def apply[U <: api.Universe with Singleton](m: api.Mirror[U]) =
if (m eq mirror) tpe.asInstanceOf[U # Type]
else throw new IllegalArgumentException(s"Type tag defined in $mirror cannot be migrated to other mirrors.")
})
assert(backward[String](forward[String]) == typeTag[String])