Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 16, 2020 09:33
Show Gist options
  • Save uncoded-ro/91ce198d9c5803acdba815019968f54c to your computer and use it in GitHub Desktop.
Save uncoded-ro/91ce198d9c5803acdba815019968f54c to your computer and use it in GitHub Desktop.
public interface Iterator {
boolean hasNext();
E next();
void remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment