Skip to content

Instantly share code, notes, and snippets.

@nialv7
Last active November 22, 2015 00:50
Show Gist options
  • Save nialv7/28f2fb540b5d067d766c to your computer and use it in GitHub Desktop.
Save nialv7/28f2fb540b5d067d766c to your computer and use it in GitHub Desktop.
struct A;
struct AAccessor {
int a, b;
};
struct A {
int a[100], b[100];
AAccessor operator[] (const int index) {
return AAccessor{a[index], b[index]};
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment