I've a Map where the key is a String and the value is an Int but represented as a String.
scala> val m = Map( "a" -> "1", "b" -> "2", "c" -> "3" )
m: scala.collection.immutable.Map[String,String] = Map(a -> 1, b -> 2, c -> 3)
Now I want to convert this into a Map[String, Int]