I frequently need to sum the transformation of a list of numbers in Scala. One way to do this of course is:
list.map(transform(_)).sum
However, this creates memory when creating memory is not required. An alternative is to fold the list.
list.foldLeft(0.0) { (total, x) => total + f(x) }
I find the first expression far easier to write than the second expression. Is there a method I can use that has the ease of the first with the efficiency of the second? Or am I better off writing my own implicit method?
list.mapSum(transform(_))
Set(1,2,3).map(_ % 2).sumis1, not2. I recently got bitten by something likesetOfPlayers.map(_.salary).sum... – Nicolas Payette Oct 11 '11 at 21:15