The higher order function typically known as reduce has a lot of synonyms in various languages.
Off the top of my head I can think of:
foldr,foldl(a.k.a right fold and left fold) (Haskell)inject(Smalltalk, Ruby, Groovy)Aggregate(LINQ)accumulate(Wikipedia)compress(Wikipedia)
Is there a comprehensive list of all the different names this function has? If not, let's make one here. It would be useful to know.
I'm not too interested in getting the library function names from each language, I'm looking for more of a colloquial, "how is it used in a sentence" type reference.