How can I use two iterators to go through a collection?
Created May 7, 2012
Nils Kulk Just get a separate iterator for each loop:
Collection l = ...; for(Iterator i = l.iterator(); ...) { for(Iterator j = l.iterator();...) { } }