I often need to run reduce (also called foldl / foldr, depending on your contexts) in java to aggregate elements of an Itterable.
Reduce takes a collection/iterable/etc, a function of two parameters, and an optional start value (depending on the implementation details). The function is successively applied to an element of the collection and the output of the previous invocation of reduce until all elements have been processed, and returns the final value.
Is there a type-safe implementation of reduce in any common java api? Google Collections seems like it should have one, but I haven’t been able to find it. (possibly because I don’t know what other names it would use.)
you could probably roll your own generic pretty easily, based on your description:
Then using the strategy pattern:
I’m sure there are a ton of syntax errors but that’s the main point (there a few choices you could make about how to get the empty accumulator value. Then to use it on a particular iterator just define your Reducer on the fly:
depending on how your iterator works this can fold left or fold right as long as the iterator goes in the right direction.
hope this helps.