Quote Originally Posted by ZuK View Post
Code:
(*this.*(*iter))( i );
I think a better syntax is:

Code:
(this->*iter)( i );
They are equivalent, of course.