Home
last modified time | relevance | path

Searched refs:remove_rvalue_reference (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/move/detail/
Dmeta_utils.hpp555 template< class T > struct remove_rvalue_reference { typedef T type; }; argument
558 template< class T > struct remove_rvalue_reference< T&& > { typedef T type; }; struct
560 template< class T > struct remove_rvalue_reference< rv<T> > { typedef T type; }; struct
561 template< class T > struct remove_rvalue_reference< const rv<T> > { typedef T type; }; struct
562 template< class T > struct remove_rvalue_reference< volatile rv<T> > { typedef T type; }; argument
563 template< class T > struct remove_rvalue_reference< const volatile rv<T> > { typedef T type; }; struct
564 template< class T > struct remove_rvalue_reference< rv<T>& > { typedef T type; }; struct
565 template< class T > struct remove_rvalue_reference< const rv<T>& > { typedef T type; }; struct
566 template< class T > struct remove_rvalue_reference< volatile rv<T>& > { typedef T type; }; struct
567 template< class T > struct remove_rvalue_reference< const volatile rv<T>& >{ typedef T type; }; argument
/third_party/boost/boost/hof/detail/
Dremove_rvalue_reference.hpp14 struct remove_rvalue_reference struct
20 struct remove_rvalue_reference<T&&> struct
21 : remove_rvalue_reference<T>
/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/
Dconstruct.hpp.txt94 #include <boost/hof/detail/remove_rvalue_reference.hpp>
283 constexpr detail::construct_template_f<Template, detail::remove_rvalue_reference> construct_basic()…
Dpack.hpp.txt79 #include <boost/hof/detail/remove_rvalue_reference.hpp>
335 …pack_base<typename gens<sizeof...(Ts)>::type, typename remove_rvalue_reference<Ts>::type...>(BOOST…
/third_party/boost/boost/hof/
Dconstruct.hpp283 constexpr detail::construct_template_f<Template, detail::remove_rvalue_reference> construct_basic()… in construct_basic()
Dpack.hpp335 …pack_base<typename gens<sizeof...(Ts)>::type, typename remove_rvalue_reference<Ts>::type...>(BOOST…
/third_party/boost/boost/thread/detail/
Dmove.hpp335 typedef typename boost::move_detail::remove_rvalue_reference<Tp>::type Up0;