if I have a `List<Pair<Double,Double>>...
# getting-started
b
if I have a
List<Pair<Double,Double>>
, is there a way to
reduce
the list to a
Pair<Double,Double>
that's a sum of all the `.first`s and `.second`s, without creating a new throw-away
Pair
object for each step?