Note that this deals with the creation of a collection of type Map, which is distinct from the map method.
Map Creation
Map[String, Int]()
val m1: Map[String, Int] = Map()
val m2: String Map Int = Map()
A map can be considered a collection of tuples for most operations, where the first e...