Skip to content

Instantly share code, notes, and snippets.

Created June 17, 2014 14:47
Show Gist options
  • Save anonymous/2d80c4e33068359e625f to your computer and use it in GitHub Desktop.
Save anonymous/2d80c4e33068359e625f to your computer and use it in GitHub Desktop.
template<typename T>
struct idx_vector {
typedef int index;
index add(T);
T get(index);
void remove(index); // invalidates index, but not other indices
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment