I know it's related to the usage of tuples or a bug in Intellij (IntelliJ Community 2018) because it reports both map methods to require f: (Int, String) => B but when I provide such a function it tells me that I have a compilation failure:
List(1, 2, 3).zip(List ("a", "b", "c")).map((a, b) => "blah") //this does not compile
(List(1, 2, 3), List("a", "b", "c")).zipped.map((a, b) => "blah") //this compiles