Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Binding Function Objects

#include <boost/phoenix/bind/bind_function_object.hpp>

Binding function objects serves two purposes: * Partial function application * Quick adaption of already existing function objects

In order to deduce the return type of the function object, it has to implement the Boost.Result Of protocol. If the bound function object is polymorphic, the resulting binding object is polymorphic.


PrevUpHomeNext