Searched defs:function_reference_wrapper (Results 1 – 1 of 1) sorted by relevance
32 struct function_reference_wrapper struct34 typedef typename FunT::result_type result_type;36 explicit function_reference_wrapper(FunT& fun) : m_Fun(fun) {} in function_reference_wrapper() argument38 result_type operator() () const in operator ()()45 result_type operator() (ArgsT const&... args) const in operator ()()51 result_type operator() (T const& arg) const in operator ()()57 result_type operator() (T1 const& arg1, T2 const& arg2) const in operator ()()64 FunT& m_Fun;