Does std::bind have boost-like overloaded operators for its result?

181 Views Asked by At

Boost has overloaded operators for boost::bind result type. So !bind(f, ...) is equivalent to bind( logical_not(), bind(f, ...) ). Some other operators like ||, && can be used as well. Does std::bind have the same features? Can one use !std::bind(...)? Is std::not1 deprecated in c++11?

0

There are 0 best solutions below