it is possible to overload somehow operator for multidimensional array?
Something like:
class A { ... int& operator[][] (const int x, const i
It is a single operator being used twice to dereference. You can dereference [] operator and perform the functionality and usage by using it as [][] by changing the return type.
[]
[][]