I'm writing some code in Scala that depends a the type parameter that I can't see on an argument.
def read[T](json: String)(implicit m: Manifest[T]): T = {
if (m <:< manifest[Map[String, Any]]) {
JsonParser.jsonToMap(json).asInstanceOf[T]
} else {
throw new UnsupportedOperationException("Not implemented for type %s".format(m))
}
}
Apart from the fact that I'm writing my own json framework, which is probably a pretty bad idea...
Can I use a case statement instead of the if statements, or should I be thinking in a different direction?