namespace placeholders { extern /* unspecified */ _1; extern /* unspecified */ _2; extern /* unspecified */ _3; // ...}
123
using namespace std::placeholders; auto bound_fn = std::bind (fn,100,_1); bound_fn(5); // calls fn(100,5), i.e.: replacing _1 by the first argument: 5