What\'s the best way to iterate over a list while processing 2 elements at the same time?
Example:
List strings = Arrays.asList(\"item
Just increase i by 2:
i
for(int i = 0; i < strings.size(); i += 2) {