If I bind such a function using placeholders during the bind
std::bind(memberFunctionPointer, objectPointer, _1, _2);
Is it possible to "rebuild" it later to replace some / all placeholders, but without calling the function? I want to be able to pass in some parameters and then save them so that they can be called later. (pending answer)
source share