If I define a pointer to an object that defines the [] operator, is there a direct way to access this operator from a pointer?
[]
For example, in the follo
You can use it as VecPrt->operator [] ( 0 ), but I'm not sure you'll find it less obscure.
VecPrt->operator [] ( 0 )