in clojure we have a map function where you can provide a function and two collections
(map + [1 2 ] [4 5 ]) ;;=> (5 7 )
is there something similar in Scala?
I tried with for comprehension but then i got 4 combinations.
If there is a way with for comprehension, would be even better because i have to do some filtering in the future/
You can use
.zip
first to combine the two collections into one, then map:I don't think it's possible with a for-comprehension. You can do filtering with a call to
.filter
or.filterNot
as well.