val numbers = scala.collection.parallel.mutable.ParTrieMap(
(1 until 100) zip (1 until 100): _*
) map { case (k, v) => (k.toDouble, v.toDouble) }
For the above code I know that (1 until 100) zip (1 until 100)
will return something like a Map, but what's the meaning of _*
following it?