2
votes
Is there a sweet, efficient way to call the same method twice with two different arguments?
In some languages (e.g python) there is the concept of a reduce or fold function - which is a functional way of representing loops over all of the elements in a list.
Using reduce you can w …
