Struct template binder2nd
boost::log::binder2nd — Second argument binder.
Synopsis
template<typename FunT, typename SecondArgT>
struct binder2nd : private FunT {
typedef FunT::result_type result_type;
binder2nd(FunT const &, unspecified);
template<typename T> result_type operator()(T const &) const;
template<typename T0, typename T1>
result_type operator()(T0 const &, T1 const &) const;
};
Description
binder2nd
public
construct/copy/destruct
- <
binder2nd(FunTconst&fun,unspecifiedarg);
>
binder2nd public member functions
- <
template<typenameT>result_typeoperator()(Tconst&arg)const;
>
- <
template<typenameT0,typenameT1>
result_typeoperator()(T0const&arg0,T1const&arg1)const;
>