Using Google Guava (Google Commons), is there a way to merge two equally sized lists into one list, with the new list containing composite objects of the two input lists?
Looks like this is not currently in Guava, but is a desired feature. See this github issue, in particular Iterators.zip().
Iterators.zip()