C++ continues to surprise me. Today i found out about the ->* operator. It is overloadable but i have no idea how to invoke it. I manage to overload it in my class but i hav
Like any other opperator, you can also call it explicitly:
a.operator->*(2);