it is possible to overload somehow operator for multidimensional array?
Something like:
class A { ... int& operator[][] (const int x, const i
You need to overload operator[] and make it return a new class which only has another operator[].
operator[]