Home
last modified time | relevance | path

Searched defs:add_lvalue_reference (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/type_traits/
Dadd_lvalue_reference.hpp13 template <class T> struct add_lvalue_reference struct
15 typedef typename boost::add_reference<T>::type type;
19 template <class T> struct add_lvalue_reference<T&&> struct
21 typedef T& type;
/third_party/boost/boost/move/detail/
Dunique_ptr_meta_utils.hpp241 struct add_lvalue_reference struct
243 typedef T& type;
247 struct add_lvalue_reference<T&> struct
249 typedef T& type;
253 struct add_lvalue_reference<void> struct
255 typedef void type;
259 struct add_lvalue_reference<const void> struct
261 typedef const void type;
265 struct add_lvalue_reference<volatile void> struct
267 typedef volatile void type;
[all …]
Dmeta_utils.hpp181 struct add_lvalue_reference struct
182 { typedef T& type; };
184 template<class T> struct add_lvalue_reference<T&> { typedef T& type; }; argument
185 template<> struct add_lvalue_reference<void> { typedef void type; }; argument
186 template<> struct add_lvalue_reference<const void> { typedef const void type; }; argument
187 template<> struct add_lvalue_reference<volatile void> { typedef volatile void type; … argument
188 template<> struct add_lvalue_reference<const volatile void>{ typedef const volatile void ty… argument
/third_party/boost/boost/hana/
Dtraits.hpp150 constexpr auto add_lvalue_reference = metafunction<std::add_lvalue_reference>; variable
/third_party/boost/libs/hana/include/boost/hana/
Dtraits.hpp150 constexpr auto add_lvalue_reference = metafunction<std::add_lvalue_reference>; variable