Is there an elegant way to skip the first iteration in a Java5 foreach loop ?
Example pseudo-code:
for ( Car car : cars ) { //skip if first, do w
I'm not a java person but can you use :
for ( Car car : cars.tail() ) from java.util via Groovy JDK
for ( Car car : cars.tail() )