...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::log::binder1st<FunT &, FirstArgT> — First argument binder.
// In header: <boost/log/utility/functional/bind.hpp> template<typename FunT, typename FirstArgT> struct binder1st<FunT &, FirstArgT> { // types typedef remove_cv< FunT >::type::result_type result_type; // construct/copy/destruct binder1st(FunT &, unspecified); // public member functions result_type operator()() const; template<typename T0> result_type operator()(T0 const &) const; template<typename T0, typename T1> result_type operator()(T0 const &, T1 const &) const; };