Last active
November 22, 2015 00:50
-
-
Save nialv7/28f2fb540b5d067d766c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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