Hello I have this text from C++ Primer 5th edition:
function<bool (const string&)> fcn = &string::empty;find_if(svec.begin(), svec.end(), fcn);Here we tell function that empty is a function that can be called with a string and returns a bool. Ordinarily, the object on which a member function executes is passed to the implicit this parameter. When we want to use function to generate a callable for a member function, we have to “translate” the code to make that implicit parameter explicit.
So what he meant with: "When we want to use function... make that implicit parameter explicit"?