Skip to content

Instantly share code, notes, and snippets.

@KevinTyrrell
Created February 10, 2016 19:11
Show Gist options
  • Save KevinTyrrell/bf6a5728c074b311d19d to your computer and use it in GitHub Desktop.
Save KevinTyrrell/bf6a5728c074b311d19d to your computer and use it in GitHub Desktop.
List[] aidsArray = new Collection[10];
for (List i : aidsArray)
{
ListIterator iter = i.ListIterator();
while (iter.hasNext())
{
// operation here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment