Skip to content

Instantly share code, notes, and snippets.

@thomastraum
Created January 20, 2013 16:53
Show Gist options
  • Save thomastraum/4579788 to your computer and use it in GitHub Desktop.
Save thomastraum/4579788 to your computer and use it in GitHub Desktop.
vector loop
vector<Particle*>::iterator it = group.begin();
while( it != group.end() ) {
it++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment