I'm trying to create a Map with idiomatic Scala with a sequenced key and a value of zero. I was thinking something like this:
(0 to 445) map (_ => _ -> 0).toMap
but that fails the IDE (IDEA) complains with cannot resolve symbol ->
and the compiler complains about missing parameter type
What do I do wrong?