Searched defs:result_traits (Results 1 – 2 of 2) sorted by relevance
34 template<class R, class F> struct result_traits struct36 typedef R type;41 template<class F> struct result_traits<unspecified, F> struct43 typedef typename F::result_type type;46 template<class F> struct result_traits< unspecified, reference_wrapper<F> > struct48 typedef typename F::result_type type;53 template<class T> struct result_traits< unspecified, std::plus<T> > struct55 typedef T type;58 template<class T> struct result_traits< unspecified, std::minus<T> > struct60 typedef T type;[all …]
263 typedef detail::fixed_numeric_limits<Target> result_traits; in numeric_cast() typedef