Will skip the given number of elements in the queue. The next call of the {@link #next()} method will return the element immediately after the last skipped one.Must be called before any iterating methods have been used. Otherwise an {@link IllegalStateException} is thrown.
@param nrOfElements Number of elements to skip
@return The number of skipping iterations that could not be performed because the iterator reached the end. Should be 0 when the iterator was able to complete all operations without reaching the end.
@throws IllegalStateException when called after iterating methods have been used
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.