I've got a List[Any]
of values and a list of corresponding ClassManifest[_]
s, storing values' original types. How do i cast some value from list back to it's original type?
def cast[T](x: Any, mf: ClassManifest[T]): T = x.asInstanceOf[T]
doesn't work.
Thank You for your answers.