I have some lambda functions which I want to bind using either boost::bind or std::bind. (Don\'t care which one, as long as it works.) Unfortunately both of them give me differe
std::function f1 = [](){ std::cout<<"f1()"< f2 = [](int x){ std::cout<<"f2() x="< f3 = [](){ std::cout<<"f3()"< f4 = [](int x){ std::cout<<"f4() x="<